Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Jul 22, 2023
1 parent a49dd1c commit ee48ac3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ jobs:
title: 'chore: release `@intlify/eslint-plugin-vue-i18n`'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
10 changes: 5 additions & 5 deletions scripts/lib/changesets-util.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import getReleasePlan from "@changesets/get-release-plan";
import path from "path";
import getReleasePlan from '@changesets/get-release-plan'
import path from 'path'

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

return releasePlan.releases.find(({ name }) => name === "eslint-plugin-css")!
.newVersion;
return releasePlan.releases.find(({ name }) => name === 'eslint-plugin-css')!
.newVersion
}
11 changes: 3 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,8 @@
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
/* Advanced Options */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"skipLibCheck": true, /* Skip type checking of declaration files. */
"skipLibCheck": true /* Skip type checking of declaration files. */,
"resolveJsonModule": true
},
"include": [
"lib",
"tests/lib/**/*",
"scripts/**/*",
"typings/**/*"
]
}
"include": ["lib", "tests/lib/**/*", "scripts/**/*", "typings/**/*"]
}

0 comments on commit ee48ac3

Please sign in to comment.