@kevinmarrec/tsconfig 1.0.0 → 1.1.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.
@@ -15,7 +15,7 @@ jobs:
15
15
  id-token: write
16
16
  steps:
17
17
  - name: Checkout
18
- uses: actions/checkout@v4
18
+ uses: actions/checkout@v5
19
19
  with:
20
20
  fetch-depth: 0
21
21
 
@@ -30,10 +30,11 @@ jobs:
30
30
  node-version: lts/*
31
31
  registry-url: https://registry.npmjs.org
32
32
 
33
+ - name: Update npm
34
+ run: npm install -g npm@latest
35
+
33
36
  - name: Publish
34
- run: npm publish --provenance --access public --tag ${{ contains(github.ref_name, 'beta') && 'beta' || 'latest' }}
35
- env:
36
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
37
+ run: npm publish --access public --tag ${{ contains(github.ref_name, 'beta') && 'beta' || 'latest' }}
37
38
 
38
39
  - name: Create release notes
39
40
  run: bunx changelogithub
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevinmarrec/tsconfig",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Opinionated TypeScript config.",
5
5
  "packageManager": "bun@1.2.21",
6
6
  "author": "Kevin Marrec <kevin@marrec.io>",