linted 32.9.0-rc.2 → 32.9.0-rc.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.
@@ -1,13 +1,19 @@
1
1
  --- # RELEASE.yml
2
- name: NPM Publish (RELEASE)
3
- on: { push: { tags: ['v[0-9]+.[0-9]+.[0-9]+'] } }
2
+ name: NPM Publish
3
+ on:
4
+ push:
5
+ tags:
6
+ - v[0-9]+.[0-9]+.[0-9]+
7
+ - v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
4
8
  jobs:
5
9
  publish-release:
6
- name: Build/Publish (RELEASE)
10
+ name: Build/Publish
7
11
  environment:
8
12
  name: RELEASE
9
13
  url: https://www.npmjs.com/package/linted?activeTab=versions
10
- permissions: { contents: read }
14
+ permissions:
15
+ id-token: write
16
+ contents: read
11
17
  runs-on: ubuntu-latest
12
18
  steps:
13
19
  - name: Checkout
@@ -19,12 +25,14 @@ jobs:
19
25
  with:
20
26
  node-version: 22
21
27
  registry-url: https://registry.npmjs.org
28
+ - name: Install NPM
29
+ id: npm
30
+ run: npm install -g npm@latest
22
31
  - name: Install Dependencies
23
32
  id: ci
24
33
  run: npm ci --loglevel=error --fund=false
25
34
  - name: Publish to NPM
26
35
  id: publish
27
36
  run: npm publish
28
- env: { NODE_AUTH_TOKEN: "${{secrets.NPM_TOKEN}}" }
29
37
 
30
38
  ...
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # [`linted`](https://www.npmjs.com/package/linted)
2
- [![NPM Publish (RELEASE)](https://github.com/jimmy-zhening-luo/linted/actions/workflows/RELEASE.yml/badge.svg)](https://github.com/jimmy-zhening-luo/linted/actions/workflows/RELEASE.yml)
2
+ [![NPM Publish](https://github.com/jimmy-zhening-luo/linted/actions/workflows/RELEASE.yml/badge.svg)](https://github.com/jimmy-zhening-luo/linted/actions/workflows/RELEASE.yml)
3
3
 
4
4
  > [!CAUTION]
5
5
  > ___DO NOT USE - DOCUMENTATION IS SIGNIFICANTLY OUTDATED AS OF AUGUST 4, 2024___
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "$schema": "https://json.schemastore.org/package",
4
4
  "$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
5
5
  "name": "linted",
6
- "version": "32.9.0-rc.2",
6
+ "version": "32.9.0-rc.4",
7
7
  "repository": "github:jimmy-zhening-luo/linted",
8
8
  "description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
9
9
  "keywords": [
@@ -53,8 +53,8 @@
53
53
  "dependencies": {
54
54
  "@eslint/css": "0.13.0",
55
55
  "@eslint/json": "0.13.2",
56
- "@eslinted/core": "28.0.0-rc.2",
57
- "@eslinted/defaults": "16.0.0-rc.0",
56
+ "@eslinted/core": "28.0.0-rc.5",
57
+ "@eslinted/defaults": "16.0.0-rc.2",
58
58
  "@html-eslint/eslint-plugin": "0.47.0",
59
59
  "@stylistic/eslint-plugin": "5.4.0",
60
60
  "eslint-plugin-chai-expect": "3.1.0",
@@ -1,30 +0,0 @@
1
- --- # rc.yml
2
- name: NPM Publish (rc)
3
- on: { push: { tags: ['v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'] } }
4
- jobs:
5
- publish-rc:
6
- name: Build/Publish (rc)
7
- environment:
8
- name: rc
9
- url: https://www.npmjs.com/package/linted?activeTab=versions
10
- permissions: { contents: read }
11
- runs-on: ubuntu-latest
12
- steps:
13
- - name: Checkout
14
- id: checkout
15
- uses: actions/checkout@v4
16
- - name: Install Node
17
- id: node
18
- uses: actions/setup-node@v4
19
- with:
20
- node-version: 22
21
- registry-url: https://registry.npmjs.org
22
- - name: Install Dependencies
23
- id: ci
24
- run: npm ci --loglevel=error --fund=false
25
- - name: Publish to NPM
26
- id: publish
27
- run: npm publish
28
- env: { NODE_AUTH_TOKEN: "${{secrets.NPM_TOKEN}}" }
29
-
30
- ...