linted 19.4.3-rc.1 → 19.4.3-rc.14

Sign up to get free protection for your applications and to get access to all the features.
@@ -32,5 +32,5 @@ jobs:
32
32
  run: npm ci
33
33
  - name: Publish to NPM
34
34
  id: publish
35
- run: npm publish --tag=next
35
+ run: npm publish
36
36
  env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
@@ -1,14 +1,12 @@
1
1
  {
2
- // v0.35.0
3
- // https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/Rules.md
4
- // "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.35.0/schema/markdownlint-config-schema.json",
2
+ // v0.36.1
3
+ // https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/Rules.md
4
+ // "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.36.1/schema/markdownlint-config-schema.json",
5
5
  "heading-increment": true /* MD001 */,
6
6
  "heading-style": {
7
7
  "style": "atx",
8
8
  } /* MD003 */,
9
- "ul-style": {
10
- "style": "sublist",
11
- } /* MD004 */,
9
+ "ul-style": false /* MD004 */,
12
10
  "list-indent": true /* MD005 */,
13
11
  "ul-indent": {
14
12
  "indent": 2,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
- "_schemaVersion": "22.10.0",
2
+ "_schemaVersion": "22.10.2",
3
3
  "name": "linted",
4
- "version": "19.4.3-rc.1",
4
+ "version": "19.4.3-rc.14",
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",
@@ -28,7 +28,8 @@
28
28
  "license": "MIT",
29
29
  "private": false,
30
30
  "publishConfig": {
31
- "access": "public"
31
+ "access": "public",
32
+ "tag": "next"
32
33
  },
33
34
  "type": "module",
34
35
  "main": "dist/index.js",
@@ -61,7 +62,7 @@
61
62
  }
62
63
  },
63
64
  "dependencies": {
64
- "@eslinted/core": "5.1.5-rc.1",
65
+ "@eslinted/core": "10.0.0",
65
66
  "@html-eslint/eslint-plugin": "0.27.0",
66
67
  "@html-eslint/parser": "0.27.0",
67
68
  "@stylistic/eslint-plugin": "2.10.0",
@@ -128,6 +129,9 @@
128
129
  "starter:svelte": "vite preview",
129
130
  "prestart": "npm test",
130
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",
131
135
  "predeploy": "npm test",
132
136
  "deploy": ""
133
137
  },