Last active
April 17, 2022 12:45
-
-
Save barnaby/d81e5ac2bec12eca14e1 to your computer and use it in GitHub Desktop.
Takana and gulp.js playing nice
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'), | |
takana = require('takana'); | |
gulp.task('takana', function() { | |
takana.run({ | |
path: __dirname, | |
includePaths: [] // Optional | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yup, check out mechio/takana-example, this should give you a good idea of how to use takana with gulp.