-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: pnpmを導入 * chore: yarn.lockを削除 * chore: npmで実行していたスクリプトをpnpmで実行する * chore: GitHub Actionsのワークフローでpnpmを使う * chore: renovateのpostUpdateOptionsをpnpm向けに変更 * chore: .gitignoreのコメントを修正 * docs: READMEを修正 * docs: npmへのリンクをpnpmへのリンクに差し替え
- Loading branch information
Showing
10 changed files
with
6,953 additions
and
5,530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
package-lock=false | ||
lockfile=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,16 @@ | |
"type": "git", | ||
"url": "git+https://github.com/kufu/textlint-rule-preset-smarthr.git" | ||
}, | ||
"engines": { | ||
"pnpm": "=9.13.2" | ||
}, | ||
"scripts": { | ||
"example": "cd example && npm it", | ||
"example": "cd example && pnpm it", | ||
"test:textlint-scripts": "textlint-scripts test", | ||
"test:dict": "textlint --config test/.textlintrc README.md", | ||
"test": "npm run test:dict && npm run test:textlint-scripts", | ||
"test": "pnpm run test:dict && pnpm run test:textlint-scripts", | ||
"build": "textlint-scripts build", | ||
"prepublishOnly": "npm run --if-present build", | ||
"prepublishOnly": "pnpm run --if-present build", | ||
"release": "standard-version", | ||
"release:dryrun": "standard-version --dry-run" | ||
}, | ||
|
@@ -78,5 +81,6 @@ | |
}, | ||
"author": "SmartHR textlint Team", | ||
"license": "MIT", | ||
"description": "SmartHRらしい文書を書くための、textlintルールプリセットを提供します。" | ||
"description": "SmartHRらしい文書を書くための、textlintルールプリセットを提供します。", | ||
"packageManager": "[email protected]+sha256.ccce81bf7498c5f0f80e31749c1f8f03baba99d168f64590fc7e13fad3ea1938" | ||
} |
Oops, something went wrong.