linted 23.10.2 → 23.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,6 +27,9 @@ jobs:
27
27
  node-version: 22
28
28
  check-latest: true
29
29
  registry-url: "https://registry.npmjs.org"
30
+ - name: Install Dependencies
31
+ id: ci
32
+ run: npm ci
30
33
  - name: Publish to NPM
31
34
  id: publish
32
35
  run: npm publish
@@ -27,6 +27,9 @@ jobs:
27
27
  node-version: 22
28
28
  check-latest: true
29
29
  registry-url: "https://registry.npmjs.org"
30
+ - name: Install Dependencies
31
+ id: ci
32
+ run: npm ci
30
33
  - name: Publish to NPM
31
34
  id: publish
32
35
  run: npm publish
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
- "_schemaVersion": "22.12.0",
2
+ "_schemaVersion": "22.12.1",
3
3
  "name": "linted",
4
- "version": "23.10.2",
4
+ "version": "23.10.4",
5
5
  "description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
6
6
  "keywords": [
7
7
  "eslint",
@@ -47,7 +47,7 @@
47
47
  "peerDependencies": {
48
48
  "eslint": "~9.17.0",
49
49
  "mocha": "^11.0.1",
50
- "svelte": "^5.14.0",
50
+ "svelte": "^5.14.2",
51
51
  "typescript": ">=5.7.2"
52
52
  },
53
53
  "peerDependenciesMeta": {
@@ -62,8 +62,8 @@
62
62
  }
63
63
  },
64
64
  "dependencies": {
65
- "@eslinted/core": "14.2.8",
66
- "@eslinted/defaults": "4.6.5",
65
+ "@eslinted/core": "14.2.10",
66
+ "@eslinted/defaults": "4.6.7",
67
67
  "@html-eslint/eslint-plugin": "0.31.1",
68
68
  "@html-eslint/parser": "0.31.0",
69
69
  "@stylistic/eslint-plugin": "2.12.1",
@@ -76,7 +76,7 @@
76
76
  "eslint-plugin-svelte": "2.46.1",
77
77
  "eslint-plugin-yml": "1.16.0",
78
78
  "jsonc-eslint-parser": "2.4.0",
79
- "svelte": "^5.14.1",
79
+ "svelte": "^5.14.2",
80
80
  "svelte-eslint-parser": "0.43.0",
81
81
  "yaml-eslint-parser": "1.2.3"
82
82
  },
@@ -92,12 +92,6 @@
92
92
  "typescript": "^5.7.2"
93
93
  },
94
94
  "scripts": {
95
- "prebuild": "npm ci || run-s prebuild:reinstall:*",
96
- "prebuild:reinstall:install": "npm i",
97
- "prebuild:reinstall:add": "git add *",
98
- "prebuild:reinstall:commit": "run-os",
99
- "prebuild:reinstall:commit:default": "git commit -m \"reinstall ${npm_package_version}\"",
100
- "prebuild:reinstall:commit:windows": "git commit -m \"reinstall %npm_package_version%\"",
101
95
  "build": "run-os",
102
96
  "build:default": "npm run rebuild+lint+test -- $npm_package_config_language $npm_package_config_lint default",
103
97
  "build:windows": "npm run rebuild+lint+test -- %npm_package_config_language% %npm_package_config_lint% windows",