-
-
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.
- Loading branch information
Showing
19 changed files
with
21,338 additions
and
15,825 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,4 +1,4 @@ | ||
{ | ||
"node": "16", | ||
"node": "18", | ||
"sandboxes": [] | ||
} |
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 |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
.*cache | ||
.type-coverage | ||
.vercel | ||
.yarn/* | ||
!.yarn/plugins | ||
coverage | ||
lib | ||
node_modules |
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,5 +1,6 @@ | ||
.type-coverage | ||
.vercel | ||
.yarn | ||
coverage | ||
dist | ||
/auto-imports.d.ts | ||
|
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 @@ dist | |
lib | ||
LICENSE | ||
*.json | ||
*.lock | ||
*.log | ||
*.ts | ||
*.tsbuildinfo | ||
|
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 @@ | ||
module.exports={name:"plugin-prepare-lifecycle",factory:e=>({hooks:{afterAllInstalled(r){if(!r.topLevelWorkspace.manifest.scripts.get("prepare"))return;e("@yarnpkg/shell").execute("yarn prepare")}}})}; |
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,8 @@ | ||
compressionLevel: mixed | ||
|
||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- checksum: 37b2361b1502b2054e6779788c0e9bdd6a90ce49852a8cad2feda79b0614ec94f06fb6e78951f5f95429c610d7934dd077caa47413a0227378a102c55161616d | ||
path: .yarn/plugins/plugin-prepare-lifecycle.cjs | ||
spec: "https://github.com/un-es/yarn-plugin-prepare-lifecycle/releases/download/v0.0.1/index.js" |
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 |
---|---|---|
|
@@ -10,64 +10,74 @@ | |
"workspaces": [ | ||
"packages/*" | ||
], | ||
"packageManager": "[email protected]", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "run-p build:*", | ||
"build": "run-p 'build:*'", | ||
"build:r": "r -f cjs", | ||
"build:tsc": "tsc -b", | ||
"clean": "rimraf packages/**/{lib,*.tsbuildinfo}", | ||
"clean": "rimraf -g 'packages/**/{lib,*.tsbuildinfo}'", | ||
"dev": "vite dev", | ||
"lint": "run-p lint:*", | ||
"lint": "run-p 'lint:*'", | ||
"lint:es": "eslint . --cache -f friendly", | ||
"lint:style": "stylelint . --cache", | ||
"lint:tsc": "tsc --noEmit", | ||
"postversion": "pnpm i --no-frozen-lockfile", | ||
"prepare": "simple-git-hooks", | ||
"prerelease": "pnpm build", | ||
"prevercel-build": "pnpm build", | ||
"release": "changeset publish", | ||
"release": "yarn build && changeset publish", | ||
"serve": "sirv dist -s", | ||
"test": "vitest run --coverage", | ||
"typecov": "type-coverage", | ||
"vercel-build": "vite build", | ||
"version": "changeset version" | ||
"vercel-build": "yarn build && vite build", | ||
"version": "changeset version && yarn --no-immutable" | ||
}, | ||
"devDependencies": { | ||
"@1stg/app-config": "^8.0.1", | ||
"@1stg/lib-config": "^11.0.1", | ||
"@changesets/changelog-github": "^0.4.8", | ||
"@changesets/cli": "^2.26.1", | ||
"@mdx-js/rollup": "^2.3.0", | ||
"@types/node": "^18.15.11", | ||
"@types/react": "^18.0.33", | ||
"@types/react-dom": "^18.0.11", | ||
"@types/web": "^0.0.99", | ||
"@vitejs/plugin-react-swc": "^3.3.0", | ||
"@vitest/coverage-istanbul": "^0.29.8", | ||
"github-markdown-css": "^5.2.0", | ||
"pkg": "workspace:*", | ||
"@1stg/app-config": "^9.0.0", | ||
"@1stg/lib-config": "^12.0.0", | ||
"@changesets/changelog-github": "^0.5.0", | ||
"@changesets/cli": "^2.27.1", | ||
"@commitlint/cli": "^18.4.3", | ||
"@mdx-js/rollup": "^3.0.0", | ||
"@pkgr/rollup": "^4.1.3", | ||
"@types/node": "^18.19.3", | ||
"@types/react": "^18.2.42", | ||
"@types/react-dom": "^18.2.17", | ||
"@types/web": "^0.0.125", | ||
"@vitejs/plugin-react-swc": "^3.5.0", | ||
"@vitest/coverage-istanbul": "^1.0.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", | ||
"react-router-dom": "^6.10.0", | ||
"remark-gfm": "^3.0.1", | ||
"sass": "^1.61.0", | ||
"react-router-dom": "^6.20.1", | ||
"remark-gfm": "^4.0.0", | ||
"rimraf": "^5.0.5", | ||
"sass": "^1.69.5", | ||
"simple-git-hooks": "^2.9.0", | ||
"sirv-cli": "^2.0.2", | ||
"tsx": "^3.12.6", | ||
"type-coverage": "^2.25.0", | ||
"typescript": "^5.0.4", | ||
"unplugin-auto-import": "^0.15.2", | ||
"vite": "^4.2.1", | ||
"vitest": "^0.29.8" | ||
"stylelint": "^15.11.0", | ||
"tsx": "^4.6.1", | ||
"type-coverage": "^2.27.0", | ||
"typescript": "^5.3.3", | ||
"unplugin-auto-import": "^0.17.2", | ||
"vite": "^5.0.6", | ||
"vitest": "^1.0.2" | ||
}, | ||
"resolutions": { | ||
"prettier": "^2.8.7" | ||
"@commitlint/cli": "^18.4.3", | ||
"esbuild": "^0.19.8", | ||
"lint-staged": "^15.2.0", | ||
"prettier": "^2.8.8", | ||
"rollup": "^4.6.1" | ||
}, | ||
"commitlint": { | ||
"extends": "@1stg" | ||
}, | ||
"eslintConfig": { | ||
"extends": "@1stg", | ||
"rules": { | ||
"markup/markup": "off", | ||
"react/react-in-jsx-scope": "off" | ||
} | ||
}, | ||
|
@@ -77,7 +87,7 @@ | |
"lib", | ||
"/packages/**/CHANGELOG.md", | ||
"/auto-imports.d.ts", | ||
"/pnpm-lock.yaml", | ||
"/yarn-lock.yaml", | ||
"!/.github", | ||
"!/.*.cjs" | ||
], | ||
|
@@ -93,7 +103,11 @@ | |
] | ||
}, | ||
"stylelint": { | ||
"extends": "@1stg/stylelint-config" | ||
"extends": "@1stg/stylelint-config", | ||
"rules": { | ||
"scss/at-import-no-partial-leading-underscore": null, | ||
"scss/load-no-partial-leading-underscore": true | ||
} | ||
}, | ||
"typeCoverage": { | ||
"atLeast": 100, | ||
|
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
Oops, something went wrong.