-
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: use correct json content in md (#480)
- Loading branch information
Showing
8 changed files
with
1,404 additions
and
2,754 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
CHANGELOG.md | ||
test/fixtures |
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 |
---|---|---|
|
@@ -16,9 +16,9 @@ jobs: | |
- 7 | ||
- 8 | ||
node-version: | ||
- 12 | ||
- 14 | ||
- 16 | ||
- 18 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"plugins": [ | ||
"@1stg/config" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
"JounQin (https://github.com/JounQin) <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=12.0.0" | ||
}, | ||
|
@@ -26,7 +25,7 @@ | |
"scripts": { | ||
"format": "yarn prettier '**/*.{js,json,md,yml}' --write && yarn lint --fix", | ||
"lint": "eslint . --cache -f friendly --max-warnings 10", | ||
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0", | ||
"prepare": "patch-package && simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0", | ||
"prerelease": "yarn format && yarn test", | ||
"release": "changeset release", | ||
"test": "yarn lint && mocha" | ||
|
@@ -44,8 +43,8 @@ | |
"prettier-linter-helpers": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@1stg/common-config": "^4.4.0", | ||
"@1stg/eslint-config": "^4.3.0", | ||
"@1stg/common-config": "~3.0.0", | ||
"@1stg/eslint-config": "~3.0.0", | ||
"@changesets/changelog-github": "^0.4.5", | ||
"@changesets/cli": "^2.23.0", | ||
"@graphql-eslint/eslint-plugin": "^2.5.0", | ||
|
@@ -55,14 +54,17 @@ | |
"eslint-mdx": "^1.17.0", | ||
"eslint-plugin-eslint-plugin": "^4.3.0", | ||
"eslint-plugin-mdx": "^1.17.0", | ||
"eslint-plugin-prettier": "link:.", | ||
"eslint-plugin-self": "^1.2.1", | ||
"eslint-plugin-utils": "^0.1.0", | ||
"graphql": "^16.5.0", | ||
"mocha": "^9.2.2", | ||
"patch-package": "^6.4.7", | ||
"prettier": "^2.7.1", | ||
"vue-eslint-parser": "^8.3.0" | ||
}, | ||
"resolutions": { | ||
"@babel/traverse": "^7.18.5" | ||
} | ||
"@babel/traverse": "^7.18.5", | ||
"eslint-plugin-prettier": "link:." | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/node_modules/@pkgr/utils/lib/index.cjs b/node_modules/@pkgr/utils/lib/index.cjs | ||
index cb7909a..a609f19 100644 | ||
--- a/node_modules/@pkgr/utils/lib/index.cjs | ||
+++ b/node_modules/@pkgr/utils/lib/index.cjs | ||
@@ -3,13 +3,13 @@ | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
|
||
var child_process = require('child_process'); | ||
-var path = require('node:path'); | ||
-var node_url = require('node:url'); | ||
+var path = require('path'); | ||
+var node_url = require('url'); | ||
var spawn = require('cross-spawn'); | ||
var open = require('open'); | ||
var picocolors = require('picocolors'); | ||
var module$1 = require('module'); | ||
-var fs = require('node:fs'); | ||
+var fs = require('fs'); | ||
var isGlob = require('is-glob'); | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } |
Oops, something went wrong.