File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 15
15
"tslint" : " tslint -c tslint.json 'src/**/*.ts'" ,
16
16
"stylelint" : " stylelint 'src/**/*.scss' --config stylelint-config.json --syntax scss" ,
17
17
"check-circular-deps" : " madge --circular ./dist" ,
18
- "e2e" : " protractor" ,
19
- "inline-resources" : " " ,
18
+ "e2e" : " protractor test/protractor.conf.js" ,
20
19
"deploy" : " firebase deploy" ,
21
20
"webdriver-manager" : " webdriver-manager"
22
21
},
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ if is_lint; then
19
19
npm run stylelint
20
20
elif is_circular_deps_check; then
21
21
# Build first because madge needs the JavaScript output.
22
- ng build
22
+ $( npm bin ) /gulp build
23
23
npm run check-circular-deps
24
24
elif is_e2e; then
25
25
# Start up the e2e app. This will take some time.
26
26
echo " Starting e2e app"
27
- MD_APP=e2e ng serve &
27
+ $( npm bin ) /gulp serve:e2eapp &
28
28
sleep 1
29
29
30
30
# Wait until the dist/ directory is created, indicating that the e2e app is ready.
@@ -40,7 +40,7 @@ elif is_e2e; then
40
40
41
41
# Run the e2e tests on the served e2e app.
42
42
echo " Starting e2e tests"
43
- ng e2e
43
+ npm run e2e
44
44
elif is_extract_metadata; then
45
45
# Run `tsc` first so that the directory structure in dist/ matches what ngc expects.
46
46
./node_modules/.bin/tsc -p ./src/lib/
You can’t perform that action at this time.
0 commit comments