Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 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
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js 22.x
- name: Setup Node
uses: actions/setup-node@v3

- uses: pnpm/action-setup@v4
Expand All @@ -20,12 +20,10 @@ jobs:
run: pnpm install

- name: Build
run: |
pnpm build
run: pnpm build

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
pnpm release
run: pnpm run release
3 changes: 2 additions & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
22.12
22.16.0

2 changes: 1 addition & 1 deletion auto.config.js → auto.config.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
module.exports = {
baseBranch: 'main',
labels: [
{
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,9 @@
},
"devDependencies": {
"@types/node": "^22.15.29",
"auto": "^11.3.0",
"auto": "11.1.1",
"picocolors": "^1.1.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"storybook": "^10.0.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
Expand Down
132 changes: 35 additions & 97 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 4 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,16 @@
"esModuleInterop": true,
"skipLibCheck": true,
"target": "esnext",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"moduleResolution": "bundler",
"module": "preserve",
"module": "es2015",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ndelangen I'm wondering if es2015 is actually supported or not. I think we could've kept preserve here, that's what we have in the addon-kit.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It isn't used by esbuild anyway AFAIK

"jsx": "react",
"isolatedModules": true,
"verbatimModuleSyntax": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noImplicitAny": true,
"lib": ["es2023", "dom", "dom.iterable"],
"baseUrl": ".",
"rootDir": "./src"
"lib": ["esnext", "dom", "dom.iterable"],
"rootDir": "."
},
"include": ["src/**/*"]
"include": ["src/**/*", "tsup.config.ts"]
}
Loading