@evanpurkhiser/oxc-config 0.9.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,9 +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
- - uses: pnpm/action-setup@v4
12
+ - uses: jdx/mise-action@v4
16
13
  - run: pnpm install --frozen-lockfile
17
14
  - run: pnpm run check
@@ -9,10 +9,7 @@ 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
- - uses: pnpm/action-setup@v4
12
+ - uses: jdx/mise-action@v4
16
13
  - run: pnpm install --frozen-lockfile
17
14
  - run: pnpm run check
18
15
 
@@ -24,11 +21,7 @@ jobs:
24
21
  id-token: write
25
22
  steps:
26
23
  - uses: actions/checkout@v4
27
- - uses: actions/setup-node@v4
28
- with:
29
- node-version: '24'
30
- registry-url: 'https://registry.npmjs.org'
31
- - uses: pnpm/action-setup@v4
24
+ - uses: jdx/mise-action@v4
32
25
  - run: pnpm install --frozen-lockfile
33
26
  - name: bump version
34
27
  run: |
@@ -36,4 +29,7 @@ jobs:
36
29
  git config user.email "<>"
37
30
  pnpm version minor
38
31
  git push
39
- - 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.9.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": "pnpm run lint && pnpm run format:check"
23
- },
24
18
  "devDependencies": {
25
19
  "oxfmt": "^0.41.0",
26
20
  "oxlint": "^1.56.0",
@@ -29,8 +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
+ }
34
35
  },
35
- "packageManager": "pnpm@10.15.1"
36
- }
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"
41
+ }
42
+ }