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
5 changes: 5 additions & 0 deletions .changeset/nice-frogs-chew.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'eslint-plugin-svelte': patch
---

deps: update `svelte-eslint-parser` to 1.4.0 (It supports `$state.eager`)
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pnpm install",
"postCreateCommand": "pnpm install --frozen-lockfile",

// Configure tool-specific properties.
"customizations": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/GHPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/setup-node@v4
- name: Install And Build
run: |
pnpm install
pnpm install --frozen-lockfile
cd packages/eslint-plugin-svelte
pnpm run update
pnpm build
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/NodeCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- name: Install Packages
run: pnpm install
run: pnpm install --frozen-lockfile
- name: Lint eslint-plugin-svelte
run: |
pnpm run build
Expand All @@ -45,7 +45,7 @@ jobs:
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- name: Install Packages
run: pnpm install
run: pnpm install --frozen-lockfile
- name: Build
run: |
pnpm run update
Expand All @@ -69,7 +69,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install Packages
run: pnpm install
run: pnpm install --frozen-lockfile
- name: Build eslint-plugin-svelte
run: pnpm build
working-directory: ${{ env.project_root_path }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
pnpm install -D -w eslint@${{ matrix.eslint }}
rm -rf node_modules
- name: Install Packages
run: pnpm install
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm run test
working-directory: ${{ env.project_root_path }}
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
rm -rf docs-svelte-kit/node_modules
rm -rf node_modules
- name: Install Packages
run: pnpm install
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm run test
working-directory: ${{ env.project_root_path }}
Expand All @@ -152,7 +152,7 @@ jobs:
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- name: Install Packages
run: pnpm install
run: pnpm install --frozen-lockfile
- name: Update resources
run: pnpm run update
working-directory: ${{ env.project_root_path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
node-version: 24
- name: Install Dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkg.pr.new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- name: Install Packages
run: pnpm install
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- run: pnpx pkg-pr-new publish --compact './packages/eslint-plugin-svelte' --json output.json --comment=off
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ dist
.tern-port

## repo
/pnpm-lock.yaml
packages/eslint-plugin-svelte/lib
packages/eslint-plugin-svelte/.type-coverage

Expand Down
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
package-lock=false
enable-pre-post-scripts=true
4 changes: 2 additions & 2 deletions docs-svelte-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"type": "module",
"version": "0.0.0",
"scripts": {
"lint": "eslint --cache .",
"lint-fix": "eslint --cache . --fix",
"lint": "eslint --concurrency auto --cache .",
"lint-fix": "eslint --concurrency auto --cache . --fix",
"build": "cd ../packages/eslint-plugin-svelte && pnpm build && cd ../../docs-svelte-kit && pnpm run svelte-kit build",
"preview": "pnpm run svelte-kit preview",
"dev": "pnpm run svelte-kit dev",
Expand Down
6 changes: 3 additions & 3 deletions packages/eslint-plugin-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"debug": "pnpm run mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"lint": "run-p lint:*",
"lint-fix": "pnpm run lint:es --fix",
"lint:es": "eslint --cache .",
"lint:es": "eslint --concurrency auto --cache .",
"mocha": "pnpm run ts ./node_modules/mocha/bin/mocha.js",
"new": "pnpm run ts ./tools/new-rule.ts",
"prebuild": "pnpm run clean",
Expand Down Expand Up @@ -69,7 +69,7 @@
"postcss-load-config": "^3.1.4",
"postcss-safe-parser": "^7.0.0",
"semver": "^7.6.3",
"svelte-eslint-parser": "^1.3.0"
"svelte-eslint-parser": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.28.3",
Expand Down Expand Up @@ -103,7 +103,7 @@
"sass": "^1.92.0",
"source-map-js": "^1.2.1",
"stylus": "^0.64.0",
"svelte": "^5.38.6",
"svelte": "^5.41.0",
"svelte-i18n": "^4.0.1",
"tsx": "^4.20.5",
"type-coverage": "^2.29.7",
Expand Down
Loading
Loading