File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -94,9 +94,6 @@ Vagrant.configure("2") do |config|
94
94
npm install
95
95
npm ln -s
96
96
97
- echo "===== RUNNING BUILD ====="
98
- /usr/local/lib/node/bin/ds-build-app
99
-
100
97
echo "== STARTING DEV SERVER =="
101
98
nohup /usr/local/lib/node/bin/ds-dev-server &
102
99
Original file line number Diff line number Diff line change 4
4
"description" : " Data Studio Angular App" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
- "test" : " ./bin/unit"
7
+ "test" : " ./bin/unit" ,
8
+ "prestart" : " ./bin/build" ,
9
+ "start" : " ./bin/start-dev-server"
8
10
},
9
11
"bin" : {
10
12
"ds-build-app" : " ./bin/build" ,
Original file line number Diff line number Diff line change 5
5
AppController . $inject = [ '$scope' ] ;
6
6
function AppController ( $scope ) {
7
7
8
- this . test = 'var ' ;
8
+ this . test = 'Meow ' ;
9
9
10
10
} ;
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ module.exports = function (gulp) {
26
26
gulp . task ( 'jscompile' , function ( ) {
27
27
28
28
let paths = [
29
+ 'src/app/modules/app/module.es' ,
30
+ 'src/app/modules/app/**/*.es' ,
29
31
'src/app/**/*/module.es' ,
30
32
'src/app/**/*.es' ,
31
33
] ;
You can’t perform that action at this time.
0 commit comments