Skip to content

Commit e2655f5

Browse files
committed
circleci: build with npm link
1 parent df526d7 commit e2655f5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- checkout
1616

1717
- restore_cache:
18-
key: dependency-cache-{{ checksum "package.json" }}-{{ checksum "src/package.json" }}
18+
key: dependency-cache-{{ checksum "src/package.json" }}
1919
- run: cd src && npm i --silent
2020
- save_cache:
21-
key: dependency-cache-{{ checksum "package.json" }}-{{ checksum "src/package.json" }}
21+
key: dependency-cache-{{ checksum "src/package.json" }}
2222
paths:
2323
- src/node_modules
2424
- run: cd src && npm run build

docs/README_contributors.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@ Testing is done with [Jest](https://jestjs.io/).
107107
To run the tests:
108108

109109
```sh
110-
cd angular-cli-ghpages
111-
cd src
110+
cd angular-cli-ghpages/src
112111
npm test
113112
```
114113

@@ -125,8 +124,8 @@ Use VSCode and debug the task `Launch Standalone Program"`.
125124
## Publish to npm
126125

127126
```
128-
cd angular-cli-ghpages
129-
cd src
127+
cd angular-cli-ghpages/src
130128
npm run build
131129
npm run test
130+
npm publish dist
132131
```

0 commit comments

Comments
 (0)