Skip to content

Commit 9ebf38d

Browse files
committed
chore: bump package version
1 parent a47d48d commit 9ebf38d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
registry-url: https://registry.npmjs.org/
3030
scope: '@trilon'
3131
- run: yarn install --frozen-lockfile
32-
- run: yarn npm publish --access public
32+
- run: |
33+
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > .npmrc
34+
npm publish
3335
env:
3436
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

.yarnrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
nodeLinker: node-modules
22

33
yarnPath: .yarn/releases/yarn-4.0.2.cjs
4+
5+
npmScopes:
6+
trilon:
7+
npmRegistryServer: 'https://registry.npmjs.org/'
8+
npmPublishRegistry: 'https://registry.npmjs.org/'
9+
npmAlwaysAuth: true
10+
npmAuthToken: ${env:NPM_TOKEN}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trilon/eslint-plugin",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "Official Trilon Eslint Plugin",
55
"type": "commonjs",
66
"main": "./lib/index.js",
@@ -50,4 +50,4 @@
5050
"peerDependencies": {
5151
"eslint": ">=8.0.0"
5252
}
53-
}
53+
}

0 commit comments

Comments
 (0)