Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"postCreateCommand": "bash .devcontainer/postcreate.sh"
"image": "dworddesign/devcontainer",
"postCreateCommand": "pnpm install --frozen-lockfile"
}
9 changes: 0 additions & 9 deletions .devcontainer/postcreate.sh

This file was deleted.

19 changes: 11 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ jobs:
github.event.pull_request.head.ref || '' }}
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
- run: corepack enable
- run: git config --global user.email "actions@github.com"
- run: git config --global user.name "GitHub Actions"
- run: pnpm install --frozen-lockfile
- run: pnpm checkUnknownFiles
- run: pnpm lint
- env:
GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }}
Expand All @@ -27,7 +26,6 @@ jobs:
run: pnpm dw-ci push-changed-files
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
if: github.ref == 'refs/heads/master'
name: Release
run: pnpm semantic-release
Expand All @@ -52,24 +50,29 @@ jobs:
if-no-files-found: ignore
name: Data from tests
path: test-results/*/**
- if: matrix.os == 'ubuntu-latest' && matrix.node == 20
- if: matrix.os == 'ubuntu-latest' && matrix.node == 22
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
strategy:
matrix:
include:
- node: 20
os: ubuntu-latest
- node: 22
os: ubuntu-latest
- node: 20
- node: 24
os: ubuntu-latest
- node: 22
os: macos-latest
- node: 20
- node: 22
os: windows-latest
name: build
on:
pull_request: {}
push:
branches:
- master
permissions:
contents: write
id-token: write
issues: write
pull-requests: write
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.DS_Store
/.env.json
/.nyc_output
/.pnpm-store
/.test.env.json
/codecov
/codecov.SHA256SUM
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN git lfs install

# https://www.gitpod.io/docs/languages/javascript
# https://github.com/gitpod-io/gitpod/issues/945
RUN bash -c 'source $HOME/.nvm/nvm.sh && nvm install 20'
RUN bash -c 'source $HOME/.nvm/nvm.sh && nvm install 22'
RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix

RUN yarn global add gitpod-env-per-project @babel/node @babel/core
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
".gitpod.yml": true,
".husky": true,
".npmrc": true,
".nyc_output": true,
".pnpm-store": true,
".releaserc.json": true,
".renovaterc.json": true,
".vscode": true,
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,22 +51,22 @@
},
"dependencies": {
"@dword-design/defu": "^1.0.3",
"commander": "^14.0.0",
"commander": "^14.0.2",
"lodash-es": "^4.17.21",
"p-is-promise": "^4.0.0"
},
"devDependencies": {
"@dword-design/base": "^15.3.6",
"@playwright/test": "^1.54.2",
"@dword-design/base": "^16.1.4",
"@playwright/test": "^1.57.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"endent": "npm:@dword-design/endent@^1.4.7",
"execa": "^9.6.0",
"fs-extra": "^11.3.1"
"execa": "^9.6.1",
"fs-extra": "^11.3.2"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"engines": {
"node": ">=20"
"node": ">=22"
},
"publishConfig": {
"access": "public"
Expand Down
Loading
Loading