Skip to content

Commit e201564

Browse files
authored
Merge pull request #118 from atom-community/pnpm
2 parents 0992157 + 4d31444 commit e201564

File tree

10 files changed

+2190
-2688
lines changed

10 files changed

+2190
-2688
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"plugin:@typescript-eslint/eslint-recommended",
1010
"plugin:@typescript-eslint/recommended"
1111
],
12+
"ignorePatterns": ["build/", "node_modules/"],
1213
"rules": {
1314
"@typescript-eslint/ban-types": [
1415
"error",

.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+
build/ -diff
5+
package-lock.json -diff
6+
pnpm-lock.yaml -diff

.github/workflows/CI.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ jobs:
2323
- uses: UziTech/action-setup-atom@v1
2424
with:
2525
channel: ${{ matrix.atom_channel }}
26-
- name: Versions
27-
run: apm -v
2826
- name: Install APM dependencies
2927
run: |
30-
apm ci # uses locked module. use `apm install` for non-locked
28+
apm install
3129
- name: Run tests 👩🏾‍💻
3230
run: npm run test
3331

@@ -45,7 +43,7 @@ jobs:
4543
node-version: "*"
4644
- name: Install NPM dependencies
4745
run: |
48-
npm ci # uses locked module. use `npm install` for non-locked
46+
npm install
4947
- name: Lint ✨
5048
run: npm run lint
5149

@@ -61,7 +59,7 @@ jobs:
6159
with:
6260
node-version: "*"
6361
- name: NPM install
64-
run: npm ci
62+
run: npm install
6563
# - name: Build and Commit
6664
# run: npm run build-commit
6765
- 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

.npmignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.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)