linted 19.4.3-rc.6 → 19.4.3-rc.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +6 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
- "_schemaVersion": "22.10.1",
2
+ "_schemaVersion": "22.10.2",
3
3
  "name": "linted",
4
- "version": "19.4.3-rc.6",
4
+ "version": "19.4.3-rc.8",
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",
@@ -62,7 +62,7 @@
62
62
  }
63
63
  },
64
64
  "dependencies": {
65
- "@eslinted/core": "6.0.0-rc.1",
65
+ "@eslinted/core": "10.0.0-rc.0",
66
66
  "@html-eslint/eslint-plugin": "0.27.0",
67
67
  "@html-eslint/parser": "0.27.0",
68
68
  "@stylistic/eslint-plugin": "2.10.0",
@@ -129,6 +129,9 @@
129
129
  "starter:svelte": "vite preview",
130
130
  "prestart": "npm test",
131
131
  "prepublishOnly": "npm test",
132
+ "postpublish": "run-os",
133
+ "postpublish:default": "if [ \"${npm_package_version#*-}\" = \"${npm_package_version}\" ]; then npm dist-tag add \"$npm_package_name@$npm_package_version\" latest; fi",
134
+ "postpublish:windows": "cmd /c for /f \"delims=-\" %a in (\"%npm_package_version%\") do if \"%a\" == \"%npm_package_version%\" npm dist-tag add \"%npm_package_name%@%npm_package_version%\" latest",
132
135
  "predeploy": "npm test",
133
136
  "deploy": ""
134
137
  },