From 3f4c0720e1e3421431e7baa20882a4a4512a7fab Mon Sep 17 00:00:00 2001 From: ivar Date: Sun, 19 Oct 2025 23:41:23 +0200 Subject: Initial --- .../libraries/fomantic/tasks/collections/docs.js | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/wwwroot/libraries/fomantic/tasks/collections/docs.js (limited to 'src/wwwroot/libraries/fomantic/tasks/collections/docs.js') diff --git a/src/wwwroot/libraries/fomantic/tasks/collections/docs.js b/src/wwwroot/libraries/fomantic/tasks/collections/docs.js new file mode 100644 index 0000000..ffb9452 --- /dev/null +++ b/src/wwwroot/libraries/fomantic/tasks/collections/docs.js @@ -0,0 +1,23 @@ +/******************************* + * Define Docs Sub-Tasks + *******************************/ + +/* + Lets you serve files to a local documentation instance + https://github.com/Semantic-Org/Semantic-UI-Docs/ +*/ +module.exports = function (gulp) { + + var + // docs tasks + serveDocs = require('./../docs/serve'), + buildDocs = require('./../docs/build') + ; + + gulp.task('serve-docs', serveDocs); + gulp.task('serve-docs').description = 'Serve file changes to SUI Docs'; + + gulp.task('build-docs', buildDocs); + gulp.task('build-docs').description = 'Build all files and add to SUI Docs'; + +}; -- cgit v1.3