diff options
| author | Fuwn <[email protected]> | 2020-12-14 23:29:56 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-12-14 23:29:56 -0800 |
| commit | 002eb44eee98dc838bc854b945ab0cbf4884dd57 (patch) | |
| tree | 428ae460c79baf32fba8ecf16e6fe02a88c3b971 /semantic/tasks/build.js | |
| parent | :star: (diff) | |
| download | me-rewrite-angular.tar.xz me-rewrite-angular.zip | |
:star:rewrite-angular
Diffstat (limited to 'semantic/tasks/build.js')
| -rw-r--r-- | semantic/tasks/build.js | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/semantic/tasks/build.js b/semantic/tasks/build.js deleted file mode 100644 index 0a024d3..0000000 --- a/semantic/tasks/build.js +++ /dev/null @@ -1,23 +0,0 @@ -/******************************* - * Build Task - *******************************/ - -var - // dependencies - gulp = require('gulp'), - - // config - install = require('./config/project/install') -; - -module.exports = function (callback) { - - console.info('Building Semantic'); - - if (!install.isSetup()) { - console.error('Cannot find semantic.json. Run "gulp install" to set-up Semantic'); - return 1; - } - - gulp.series('build-css', 'build-javascript', 'build-assets')(callback); -}; |