forked from semaphoreui/semaphore
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use npm instead of submodule. Split public to web/public & web/resources
Fix build under Windows Remove htmls from pug directory Move package.json to web directory Remove OS type checking from test Fix builder.js codestyle Remove Taskfile_windows.yml
- Loading branch information
Showing
91 changed files
with
234 additions
and
111 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Submodule vendor
deleted from
31cbac
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[ | ||
"node_modules/angular/angular.min", | ||
"node_modules/angular-couch-potato/dist/angular-couch-potato", | ||
"node_modules/@uirouter/angularjs/release/angular-ui-router", | ||
"node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls", | ||
"node_modules/angular-loading-bar/build/loading-bar", | ||
"node_modules/moment/min/moment.min", | ||
"node_modules/sweetalert/dist/sweetalert.min", | ||
"node_modules/angular-ui-ace/src/ui-ace", | ||
"node_modules/ace-builds/src-min-noconflict/ace", | ||
"node_modules/ace-builds/src-min-noconflict/mode-json", | ||
"node_modules/ace-builds/src-min-noconflict/mode-yaml", | ||
"node_modules/ace-builds/src-min-noconflict/mode-ini", | ||
"node_modules/angularjs-scroll-glue/src/scrollglue", | ||
"public/js/app", | ||
"public/js/routes/router", | ||
"public/js/routes/auth", | ||
"public/js/routes/project", | ||
|
||
"public/js/factories/project", | ||
|
||
"node_modules/requirejs/require", | ||
"require_config" | ||
] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
var fs = require('fs'), | ||
bundle = require('./bundle.json'), | ||
out = fs.createWriteStream('./public/js/bundle.js'); | ||
|
||
bundle.forEach(function(file) { | ||
var o = {}; | ||
if (typeof file === 'object') { | ||
o = file; | ||
file = o.src; | ||
} | ||
|
||
file = file + '.js'; | ||
|
||
var contents = fs.readFileSync(file); | ||
|
||
out.write('\n/* BUNDLED FILE: ' + file + ' */\n'); | ||
|
||
if (o.pre) { | ||
out.write(o.pre + '\n'); | ||
} | ||
|
||
out.write(contents + '\n'); | ||
|
||
if (o.post) { | ||
out.write(o.post + '\n'); | ||
} | ||
}); |
Oops, something went wrong.