-
-
Notifications
You must be signed in to change notification settings - Fork 5
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
22 changed files
with
15,073 additions
and
14,128 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@1stg/app-config": major | ||
"@1stg/common-config": major | ||
"@1stg/lib-config": major | ||
--- | ||
|
||
build!: migrate to `pnpm`, `yarn-deduplicate` has been removed, you'll need to install it manually if you're still using `yarn@v1` |
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 @@ | ||
--- | ||
"@1stg/markuplint-config": minor | ||
--- | ||
|
||
feat: support `svelte` |
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 @@ | ||
--- | ||
"@1stg/stylelint-config": minor | ||
--- | ||
|
||
feat: disable `prettier/prettier` for files handled by `eslint` already |
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,10 @@ | ||
--- | ||
"@1stg/app-config": patch | ||
"@1stg/common-config": patch | ||
"@1stg/eslint-config": patch | ||
"@1stg/lib-config": patch | ||
"@1stg/lint-staged": patch | ||
"@1stg/markuplint-config": patch | ||
--- | ||
|
||
fix: support more `markup` files |
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,4 +3,5 @@ dist | |
lib | ||
node_modules | ||
CHANGELOG.md | ||
/pnpm-*.yaml | ||
!/.*.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
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,19 @@ | ||
package-lock=false | ||
auto-install-peers=true | ||
public-hoist-pattern[]=@1stg/* | ||
public-hoist-pattern[]=*babel* | ||
public-hoist-pattern[]=@commitlint/* | ||
public-hoist-pattern[]=@pkgr/* | ||
public-hoist-pattern[]=browserslist | ||
public-hoist-pattern[]=cross-env | ||
public-hoist-pattern[]=*eslint* | ||
public-hoist-pattern[]=jest | ||
public-hoist-pattern[]=lint-staged | ||
public-hoist-pattern[]=npm-run-all | ||
public-hoist-pattern[]=*postcss* | ||
public-hoist-pattern[]=*prettier* | ||
public-hoist-pattern[]=simple-git-hooks | ||
public-hoist-pattern[]=*stylelint* | ||
public-hoist-pattern[]=*svelte* | ||
public-hoist-pattern[]=tslib | ||
prefer-workspace-packages=true | ||
strict-peer-dependencies=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 |
---|---|---|
|
@@ -6,6 +6,8 @@ LICENSE | |
*.json5 | ||
*.lock | ||
*.log | ||
# TODE: make it work | ||
*.pug | ||
*.sh | ||
*.svg | ||
*.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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"workspaces": [ | ||
"packages/*" | ||
], | ||
"packageManager": "[email protected]", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"check": "run-p check:*", | ||
"check:eslint": "eslint-config-prettier .eslintrc.js", | ||
|
@@ -18,26 +18,37 @@ | |
"lint:es": "eslint . --cache -f friendly", | ||
"lint:style": "stylelint . --cache", | ||
"lint:tsc": "tsc --noEmit", | ||
"prepare": "patch-package && simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0", | ||
"prepare": "simple-git-hooks || exit 0", | ||
"release": "changeset publish", | ||
"test": "jest", | ||
"typecov": "type-coverage" | ||
}, | ||
"devDependencies": { | ||
"@1stg/babel-preset": "workspace:*", | ||
"@1stg/browserslist-config": "workspace:*", | ||
"@1stg/commitlint-config": "workspace:*", | ||
"@1stg/eslint-config": "workspace:*", | ||
"@1stg/lint-staged": "workspace:*", | ||
"@1stg/markuplint-config": "workspace:*", | ||
"@1stg/postcss-config": "workspace:*", | ||
"@1stg/prettier-config": "workspace:*", | ||
"@1stg/remark-config": "workspace:*", | ||
"@1stg/simple-git-hooks": "workspace:*", | ||
"@1stg/stylelint-config": "workspace:*", | ||
"@angular/compiler": "^14.0.5", | ||
"@angular/compiler-cli": "^14.0.5", | ||
"@angular/core": "^14.0.5", | ||
"@changesets/changelog-github": "^0.4.5", | ||
"@changesets/cli": "^2.23.0", | ||
"@changesets/cli": "^2.23.1", | ||
"@types/jest": "^28.1.4", | ||
"@types/node": "^18.0.3", | ||
"@types/react": "^18.0.15", | ||
"@types/unist": "^2.0.6", | ||
"markuplint": "^2.9.0", | ||
"patch-package": "^6.4.7", | ||
"postcss": "^8.4.14", | ||
"react": "^18.2.0", | ||
"rxjs": "^7.5.5", | ||
"svelte": "^3.48.0", | ||
"svelte": "^3.49.0", | ||
"ts-jest": "^28.0.5", | ||
"type-coverage": "^2.21.2", | ||
"typescript": "^4.7.4", | ||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
...require('./base'), | ||
parser: { | ||
'.svelte$': '@markuplint/svelte-parser', | ||
}, | ||
} |
Oops, something went wrong.