Skip to content
Open
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
19 changes: 10 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install pnpm
uses: wyvox/action-setup-pnpm@v3
with:
node-version: 18.x
node-version: 20.x
args: "--frozen-lockfile"
- name: Lint
run: pnpm lint
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Install pnpm
uses: wyvox/action-setup-pnpm@v3
with:
node-version: 18.x
node-version: 20.x
args: "--no-lockfile"
- name: Run tests
run: pnpm test:ember
Expand All @@ -57,14 +57,15 @@ jobs:
fail-fast: false
matrix:
ember-try-scenario:
- ember-lts-3.28
- ember-lts-4.4
- ember-lts-4.8
- ember-lts-4.12
- ember-lts-5.4
- ember-lts-5.8
- ember-lts-5.12
- ember-lts-6.4
- ember-lts-6.8
- ember-lts-6.12
- ember-release
- ember-beta
- ember-canary
- ember-classic
- embroider-safe
- embroider-optimized

Expand All @@ -74,7 +75,7 @@ jobs:
- name: Install pnpm
uses: wyvox/action-setup-pnpm@v3
with:
node-version: 18.x
node-version: 20.x
args: "--frozen-lockfile"
- name: Run tests
run: pnpm ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup
Expand All @@ -101,7 +102,7 @@ jobs:
- name: Install pnpm
uses: wyvox/action-setup-pnpm@v3
with:
node-version: 18.x
node-version: 20.x
args: "--frozen-lockfile"
- name: Update TS version on addon package
run: pnpm add -D ${{ matrix.typescript-scenario }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install pnpm
uses: wyvox/action-setup-pnpm@v3
with:
node-version: 18.x
node-version: 20.x
node-registry-url: "https://registry.npmjs.org"

- name: Trigger release script
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resolution-mode=highest
4 changes: 2 additions & 2 deletions ember-amount-input/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ module.exports = {
browser: false,
node: true,
},
plugins: ['node'],
extends: ['plugin:node/recommended'],
plugins: ['n'],
extends: ['plugin:n/recommended'],
},
// ts files
{
Expand Down
2 changes: 1 addition & 1 deletion ember-amount-input/babel.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"plugins": [
"@embroider/addon-dev/template-colocation-plugin",
["@babel/plugin-proposal-decorators", { "legacy": true }],
"@babel/plugin-proposal-class-properties"
"@babel/plugin-transform-class-properties"
]
}
28 changes: 14 additions & 14 deletions ember-amount-input/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,27 +39,27 @@
"@embroider/addon-shim": "^1.8.7"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/core": "^7.29.7",
"@babel/plugin-proposal-decorators": "^7.23.9",
"@babel/plugin-syntax-decorators": "^7.23.3",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@embroider/addon-dev": "^5.0.0",
"@glimmer/component": "^1.1.2",
"@glint/core": "^1.5.0",
"@glint/environment-ember-loose": "^1.4.0",
"@glint/template": "^1.3.0",
"@embroider/addon-dev": "^8.3.1",
"@glimmer/component": "^2.1.1",
"@glint/core": "^1.5.2",
"@glint/environment-ember-loose": "^1.5.2",
"@glint/template": "^1.7.8",
"@qonto/eslint-config-typescript": "1.0.0-rc.0",
"@rollup/plugin-babel": "^6.0.4",
"@tsconfig/ember": "^3.0.3",
"@rollup/plugin-babel": "^7.1.0",
"@tsconfig/ember": "^3.0.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^8.6.0",
"concurrently": "^8.2.2",
"ember-template-lint": "^5.13.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^10.0.3",
"ember-template-lint": "^7.9.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ember": "^12.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"rollup": "^4.29.0",
Expand Down Expand Up @@ -99,6 +99,6 @@
}
},
"peerDependencies": {
"ember-source": "^3.28.0 || ^4.0.0 || ^5.0.0"
"ember-source": "^5.0.0 || ^6.0.0"
}
}
2 changes: 2 additions & 0 deletions ember-amount-input/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@
"allowJs": false,
"declarationDir": "declarations",
"skipLibCheck": true,
"target": "es2022",
"lib": ["es2022", "dom"],
}
}
23 changes: 14 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,28 @@
"test": "pnpm --filter '*' test"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^19.5.0",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^9.0.3",
"concurrently": "^8.2.2",
"lefthook": "^1.5.5",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@release-it-plugins/workspaces": "^6.0.0",
"@release-it/conventional-changelog": "^11.0.1",
"concurrently": "^10.0.3",
"lefthook": "^2.1.10",
"prettier": "^3.2.5",
"release-it": "^17.6.0"
"release-it": "^19.2.4"
},
"engines": {
"node": ">= 18"
"node": ">= 20"
},
"volta": {
"node": "18.15.0"
"node": "20.18.1"
},
"packageManager": "pnpm@8.6.5",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"overrides": {
"@rollup/pluginutils": "^5.4.0"
}
}
}
Loading
Loading