-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: enable
SKIP_YARN_COREPACK_CHECK
for workaround on Windows (#47)
- Loading branch information
Showing
5 changed files
with
140 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
.type-coverage | ||
.vercel | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
coverage | ||
lib | ||
|
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,12 @@ | ||
diff --git a/dist/node/constants.js b/dist/node/constants.js | ||
index 334b9a0929295a440030a8bdb383c56a322e4301..7d133d3d87e9541508ce875a5656be22f430ea03 100644 | ||
--- a/dist/node/constants.js | ||
+++ b/dist/node/constants.js | ||
@@ -107,6 +107,7 @@ const KNOWN_ASSET_TYPES = [ | ||
'webmanifest', | ||
'pdf', | ||
'txt', | ||
+ 'md', | ||
]; | ||
const DEFAULT_ASSETS_RE = new RegExp(`\\.(` + KNOWN_ASSET_TYPES.join('|') + `)(\\?.*)?$`); | ||
const DEP_VERSION_RE = /[?&](v=[\w.-]+)\b/; |
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 |
---|---|---|
|
@@ -12,12 +12,12 @@ | |
], | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "run-p 'build:*'", | ||
"build": "concurrently 'yarn:build:*'", | ||
"build:r": "r -f cjs", | ||
"build:tsc": "tsc -b", | ||
"clean": "rimraf -g 'packages/**/{lib,*.tsbuildinfo}'", | ||
"dev": "vite dev", | ||
"lint": "run-p 'lint:*'", | ||
"lint": "concurrently 'yarn:lint:*'", | ||
"lint:es": "eslint . --cache -f friendly", | ||
"lint:style": "stylelint . --cache", | ||
"lint:tsc": "tsc --noEmit", | ||
|
@@ -26,7 +26,7 @@ | |
"serve": "sirv dist -s", | ||
"test": "vitest run --coverage", | ||
"typecov": "type-coverage", | ||
"vercel-build": "yarn build && vite build", | ||
"vercel-build": "vite build", | ||
"version": "changeset version && yarn --no-immutable" | ||
}, | ||
"devDependencies": { | ||
|
@@ -43,10 +43,10 @@ | |
"@types/web": "^0.0.125", | ||
"@vitejs/plugin-react-swc": "^3.5.0", | ||
"@vitest/coverage-istanbul": "^1.0.2", | ||
"concurrently": "^8.2.2", | ||
"eslint": "^8.55.0", | ||
"github-markdown-css": "^5.4.0", | ||
"lint-staged": "^15.2.0", | ||
"npm-run-all": "^4.1.5", | ||
"pkg": "link:packages/pkg", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
|
@@ -69,7 +69,8 @@ | |
"esbuild": "^0.19.8", | ||
"lint-staged": "^15.2.0", | ||
"prettier": "^2.8.8", | ||
"rollup": "^4.6.1" | ||
"rollup": "^4.6.1", | ||
"vite": "patch:vite@npm%3A5.0.6#~/.yarn/patches/vite-npm-5.0.6-d33c199e48.patch" | ||
}, | ||
"commitlint": { | ||
"extends": "@1stg" | ||
|
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