Skip to content

Commit a0ac190

Browse files
committed
fix: foo
1 parent 022ca26 commit a0ac190

File tree

12 files changed

+12811
-11058
lines changed

12 files changed

+12811
-11058
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
44
},
55
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-20",
6-
"updateContentCommand": "yarn --frozen-lockfile"
6+
"updateContentCommand": "pnpm install --frozen-lockfile"
77
}

.github/workflows/build.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,23 @@ jobs:
1818
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 20
21+
- run: corepack enable
2122
- run: git config --global user.email "[email protected]"
2223
- run: git config --global user.name "GitHub Actions"
23-
- run: yarn --frozen-lockfile
24-
- run: yarn checkUnknownFiles
25-
- run: yarn lint
24+
- run: pnpm install --frozen-lockfile
25+
- run: pnpm checkUnknownFiles
26+
- run: pnpm lint
2627
- env:
2728
GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }}
2829
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2930
name: Push changed files
30-
run: yarn dw-ci push-changed-files
31+
run: pnpm dw-ci push-changed-files
3132
- env:
3233
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3334
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3435
if: github.ref == 'refs/heads/master'
3536
name: Release
36-
run: yarn semantic-release
37+
run: pnpm semantic-release
3738
test:
3839
needs: cancel-existing
3940
runs-on: ${{ matrix.os }}
@@ -45,10 +46,11 @@ jobs:
4546
- uses: actions/setup-node@v4
4647
with:
4748
node-version: ${{ matrix.node }}
48-
- run: yarn --frozen-lockfile
49+
- run: corepack enable
50+
- run: pnpm install --frozen-lockfile
4951
- env:
5052
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51-
run: yarn test
53+
run: pnpm test
5254
- if: failure()
5355
uses: actions/upload-artifact@v3
5456
with:

.gitpod.Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ RUN git lfs install
1010
RUN bash -c 'source $HOME/.nvm/nvm.sh && nvm install 20'
1111
RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix
1212

13-
RUN echo "\nexport PATH=$(yarn global bin):\$PATH" >> /home/gitpod/.bashrc
14-
1513
RUN yarn global add gitpod-env-per-project @babel/node @babel/core
1614

1715
RUN sudo apt-get install -y graphviz

.gitpod.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,24 @@ image:
22
file: .gitpod.Dockerfile
33
tasks:
44
- before: >-
5+
echo "corepack enable" >> /home/gitpod/.bashrc
6+
7+
echo "export COREPACK_ENABLE_DOWNLOAD_PROMPT=0" >> /home/gitpod/.bashrc
8+
9+
gitpod-env-per-project >> /home/gitpod/.bashrc
10+
511
echo "export
612
PUPPETEER_CACHE_DIR=/workspace/eslint-plugin-import-alias/node_modules/.cache/puppeteer"
713
>> /home/gitpod/.bashrc
814
915
echo "export PLAYWRIGHT_BROWSERS_PATH=0" >> /home/gitpod/.bashrc
1016
11-
gitpod-env-per-project >> /home/gitpod/.bashrc && source
12-
/home/gitpod/.bashrc
17+
source /home/gitpod/.bashrc
1318
init: |-
1419
git config --global user.name "Sebastian Landwehr"
1520
git config diff.lfs.textconv cat
1621
git lfs pull
17-
yarn --frozen-lockfile
22+
pnpm install --frozen-lockfile
1823
vscode:
1924
extensions:
2025
- https://sebastianlandwehr.com/vscode-extensions/karlito40.fix-irregular-whitespace-0.1.1.vsix

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node-linker=hoisted

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"editor.tabSize": 2,
33
"files.autoSave": "off",
44
"files.exclude": {
5-
".babelrc.json": true,
65
".commitlintrc.json": true,
76
".cz.json": true,
87
".devcontainer": true,
@@ -20,10 +19,11 @@
2019
".vscode": true,
2120
"CHANGELOG.md": true,
2221
"LICENSE.md": true,
22+
"babel.config.json": true,
2323
"coverage": true,
2424
"dist": true,
2525
"node_modules": true,
26-
"yarn.lock": true
26+
"pnpm-lock.yaml": true
2727
},
2828
"workbench.editor.enablePreview": false
2929
}
File renamed without changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
"eslint": "^8.0.0",
5858
"execa": "^9.3.1",
5959
"fs-extra": "^11.1.1",
60-
"in-folder": "^1.0.3",
6160
"output-files": "^2.0.0"
6261
},
62+
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247",
6363
"engines": {
6464
"node": ">=18"
6565
},

0 commit comments

Comments
 (0)