Skip to content

Commit d3ae2be

Browse files
committed
chore: use pnpm
1 parent 0992157 commit d3ae2be

File tree

6 files changed

+2171
-2676
lines changed

6 files changed

+2171
-2676
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
* text=auto
2+
3+
# don't diff machine generated files
4+
dist/ -diff
5+
package-lock.json -diff
6+
pnpm-lock.yaml -diff

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: apm -v
2828
- name: Install APM dependencies
2929
run: |
30-
apm ci # uses locked module. use `apm install` for non-locked
30+
apm install
3131
- name: Run tests 👩🏾‍💻
3232
run: npm run test
3333

@@ -45,7 +45,7 @@ jobs:
4545
node-version: "*"
4646
- name: Install NPM dependencies
4747
run: |
48-
npm ci # uses locked module. use `npm install` for non-locked
48+
npm install
4949
- name: Lint ✨
5050
run: npm run lint
5151

@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
node-version: "*"
6363
- name: NPM install
64-
run: npm ci
64+
run: npm install
6565
# - name: Build and Commit
6666
# run: npm run build-commit
6767
- name: Release 🎉

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ node_modules
22
npm-debug.log
33
build/
44
yarn.lock
5+
package-lock.json

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public-hoist-pattern[]=*

0 commit comments

Comments
 (0)