@eslinted/core 5.1.5 → 6.0.0-rc.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -32,5 +32,7 @@ jobs:
32
32
  run: npm ci
33
33
  - name: Publish to NPM
34
34
  id: publish
35
- run: npm publish
35
+ run: |
36
+ npm publish --tag latest
37
+ npm dist-tag add $npm_package_name@$npm_package_version next
36
38
  env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
@@ -32,5 +32,6 @@ jobs:
32
32
  run: npm ci
33
33
  - name: Publish to NPM
34
34
  id: publish
35
- run: npm publish --tag=next
35
+ run: |
36
+ npm publish --tag next
36
37
  env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_schemaVersion": "22.10.0",
3
3
  "name": "@eslinted/core",
4
- "version": "5.1.5",
4
+ "version": "6.0.0-rc.0",
5
5
  "description": "Core ESLint flat config factory npm package `linted`.",
6
6
  "keywords": [],
7
7
  "repository": "github:jimmy-zhening-luo/linted-core",