File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
15
15
- checkout
16
16
17
17
- restore_cache :
18
- key : dependency-cache-{{ checksum "package.json" }}-{{ checksum " src/package.json" }}
18
+ key : dependency-cache-{{ checksum "src/package.json" }}
19
19
- run : cd src && npm i --silent
20
20
- save_cache :
21
- key : dependency-cache-{{ checksum "package.json" }}-{{ checksum " src/package.json" }}
21
+ key : dependency-cache-{{ checksum "src/package.json" }}
22
22
paths :
23
23
- src/node_modules
24
24
- run : cd src && npm run build
Original file line number Diff line number Diff line change @@ -107,8 +107,7 @@ Testing is done with [Jest](https://jestjs.io/).
107
107
To run the tests:
108
108
109
109
``` sh
110
- cd angular-cli-ghpages
111
- cd src
110
+ cd angular-cli-ghpages/src
112
111
npm test
113
112
```
114
113
@@ -125,8 +124,8 @@ Use VSCode and debug the task `Launch Standalone Program"`.
125
124
## Publish to npm
126
125
127
126
```
128
- cd angular-cli-ghpages
129
- cd src
127
+ cd angular-cli-ghpages/src
130
128
npm run build
131
129
npm run test
130
+ npm publish dist
132
131
```
You can’t perform that action at this time.
0 commit comments