@evanpurkhiser/oxc-config 0.8.0 → 0.10.0

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.
@@ -9,8 +9,6 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
11
  - uses: actions/checkout@v4
12
- - uses: actions/setup-node@v4
13
- with:
14
- node-version: '24'
15
- - run: npm ci
16
- - run: npm run check
12
+ - uses: jdx/mise-action@v4
13
+ - run: pnpm install --frozen-lockfile
14
+ - run: pnpm run check
@@ -9,11 +9,9 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
11
  - uses: actions/checkout@v4
12
- - uses: actions/setup-node@v4
13
- with:
14
- node-version: '24'
15
- - run: npm ci
16
- - run: npm run check
12
+ - uses: jdx/mise-action@v4
13
+ - run: pnpm install --frozen-lockfile
14
+ - run: pnpm run check
17
15
 
18
16
  publish:
19
17
  runs-on: ubuntu-latest
@@ -23,15 +21,15 @@ jobs:
23
21
  id-token: write
24
22
  steps:
25
23
  - uses: actions/checkout@v4
26
- - uses: actions/setup-node@v4
27
- with:
28
- node-version: '24'
29
- registry-url: 'https://registry.npmjs.org'
30
- - run: npm ci
24
+ - uses: jdx/mise-action@v4
25
+ - run: pnpm install --frozen-lockfile
31
26
  - name: bump version
32
27
  run: |
33
28
  git config user.name "GitHub Actions"
34
29
  git config user.email "<>"
35
- npm version minor
30
+ pnpm version minor
36
31
  git push
37
- - run: npm publish --provenance --access=public
32
+ - run: pnpm publish --no-git-checks --provenance --access=public
33
+ env:
34
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
35
+ NPM_CONFIG_REGISTRY: https://registry.npmjs.org
package/mise.toml ADDED
@@ -0,0 +1,2 @@
1
+ [settings]
2
+ idiomatic_version_file_enable_tools = ["node", "pnpm"]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@evanpurkhiser/oxc-config",
4
- "version": "0.8.0",
4
+ "version": "0.10.0",
5
5
  "description": "Evan Purkhiser's personal Oxc configuration",
6
6
  "license": "MIT",
7
7
  "author": "Evan Purkhiser",
@@ -15,12 +15,6 @@
15
15
  "./react": "./src/react.mjs",
16
16
  "./oxfmt": "./src/oxfmt.mjs"
17
17
  },
18
- "scripts": {
19
- "lint": "oxlint src oxlint.config.ts profiles/all/oxlint.config.ts",
20
- "format": "oxfmt .",
21
- "format:check": "oxfmt --check .",
22
- "check": "npm run lint && npm run format:check"
23
- },
24
18
  "devDependencies": {
25
19
  "oxfmt": "^0.41.0",
26
20
  "oxlint": "^1.56.0",
@@ -29,7 +23,20 @@
29
23
  "peerDependencies": {
30
24
  "oxlint": ">=1.56.0"
31
25
  },
32
- "volta": {
33
- "node": "24.3.0"
26
+ "devEngines": {
27
+ "packageManager": {
28
+ "name": "pnpm",
29
+ "version": "11.0.0"
30
+ },
31
+ "runtime": {
32
+ "name": "node",
33
+ "version": "^24.15.0"
34
+ }
35
+ },
36
+ "scripts": {
37
+ "lint": "oxlint src oxlint.config.ts profiles/all/oxlint.config.ts",
38
+ "format": "oxfmt .",
39
+ "format:check": "oxfmt --check .",
40
+ "check": "pnpm run lint && pnpm run format:check"
34
41
  }
35
- }
42
+ }