0.2.0 • Published 4 years ago

gulp-tw v0.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Usage

const gtw = require("gulp-tw");
const sources = {
  sass: "./src/**/*.scss",
  tiddlers: "./src/**/*.tid",
  javascript: "./src/**/*.js",
  pluginInfo: "./src/plugin.info",
};

const tiddlywiki = gtw({
  author: "danielo515",
  pluginName: "myPlugin",
  sources,
  outputDir: './plugins', // optional, defaults to this
});

// Export all the tasks!
// You can also select a subset
module.exports = {
    ...tiddlywiki
}

For a real world simple usage example take a look at this gulpfile