Skip to content

Commit ee48ac3

Browse files
committed
fix
1 parent a49dd1c commit ee48ac3

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

.github/workflows/Release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
title: 'chore: release `@intlify/eslint-plugin-vue-i18n`'
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
41+
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

scripts/lib/changesets-util.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import getReleasePlan from "@changesets/get-release-plan";
2-
import path from "path";
1+
import getReleasePlan from '@changesets/get-release-plan'
2+
import path from 'path'
33

44
/** Get new version string from changesets */
55
export async function getNewVersion(): Promise<string> {
6-
const releasePlan = await getReleasePlan(path.resolve(__dirname, "../.."));
6+
const releasePlan = await getReleasePlan(path.resolve(__dirname, '../..'))
77

8-
return releasePlan.releases.find(({ name }) => name === "eslint-plugin-css")!
9-
.newVersion;
8+
return releasePlan.releases.find(({ name }) => name === 'eslint-plugin-css')!
9+
.newVersion
1010
}

tsconfig.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,8 @@
5656
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
5757
/* Advanced Options */
5858
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
59-
"skipLibCheck": true, /* Skip type checking of declaration files. */
59+
"skipLibCheck": true /* Skip type checking of declaration files. */,
6060
"resolveJsonModule": true
6161
},
62-
"include": [
63-
"lib",
64-
"tests/lib/**/*",
65-
"scripts/**/*",
66-
"typings/**/*"
67-
]
68-
}
62+
"include": ["lib", "tests/lib/**/*", "scripts/**/*", "typings/**/*"]
63+
}

0 commit comments

Comments
 (0)