forked from didi/LogicFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: 重构 LogicFlow 项目结构,升级打包工具,使用 pnpm 做包管理工具
- Loading branch information
1 parent
f96f81c
commit eac830b
Showing
584 changed files
with
17,157 additions
and
70,358 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint", "prettier", "import"], | ||
"extends": [ | ||
"eslint:recommended", | ||
"prettier", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/ban-ts-comment": "off", | ||
"@typescript-eslint/no-explicit-any": "off" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,19 +1,26 @@ | ||
.idea | ||
# dependencies | ||
node_modules | ||
dist | ||
coverage | ||
types/* | ||
types | ||
*.DS_Store | ||
|
||
# production | ||
lib | ||
!packages/mvp/lib | ||
cjs | ||
esm | ||
es | ||
site-build | ||
dist | ||
output | ||
|
||
coverage | ||
types/** | ||
|
||
# misc | ||
.DS_Store | ||
.pnpm-*.log | ||
.idea | ||
.turbo | ||
npm-debug.log | ||
yarn-error.log | ||
|
||
/.github_token | ||
/TMP_CHANGELOG.md | ||
/.openai_token | ||
/.github_account | ||
|
||
logic-flow-docs.tar.gz | ||
*.log | ||
*/.eslintcache | ||
.eslintcache | ||
~* |
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 | ||
registry=https://registry.npmmirror.com/ |
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 @@ | ||
# Ignore artifacts: | ||
*.sh | ||
*.yml | ||
*.yaml | ||
*.svg | ||
*.gif | ||
*.log | ||
*.md | ||
|
||
.next | ||
.DS_Store | ||
CNAME | ||
AUTHORS | ||
LICENSE | ||
LICENSE | ||
|
||
node_modules | ||
es/ | ||
lib/ | ||
dist/ | ||
public/ |
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,6 +1,14 @@ | ||
{ | ||
"tabWidth": 2, | ||
"semi": false, | ||
"singleQuote": true, | ||
"semi": true, | ||
"trailingComma": "all" | ||
} | ||
"printWidth": 80, | ||
"trailingComma": "all", | ||
"proseWrap": "never", | ||
"endOfLine": "auto", | ||
"useTabs": false, | ||
"overrides": [ | ||
{ "files": ".eslintrc", "options": { "parser": "json" } }, | ||
{ "files": ".prettierrc", "options": { "parser": "json" } }, | ||
{ "files": ".stylelintrc", "options": { "parser": "json" } } | ||
] | ||
} |
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,23 @@ | ||
{ | ||
"extends": [ | ||
"stylelint-config-standard", | ||
"stylelint-config-rational-order", | ||
"stylelint-config-prettier" | ||
], | ||
"plugins": ["stylelint-order"], | ||
"customSyntax": "postcss-less", | ||
"rules": { | ||
"block-no-empty": null, | ||
"function-name-case": "lower", | ||
"comment-empty-line-before": null, | ||
"no-invalid-double-slash-comments": null, | ||
"no-descending-specificity": null, | ||
"declaration-empty-line-before": null, | ||
"no-duplicate-selectors": null, | ||
"value-no-vendor-prefix": null, | ||
"selector-pseudo-class-no-unknown": null, | ||
"selector-class-pattern": null, | ||
"keyframes-name-pattern": null, | ||
"number-max-precision": null | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,17 @@ | ||
{ | ||
"presets": [ | ||
["@babel/preset-env", { "targets": { "node": "current" } }], | ||
"@babel/preset-typescript" | ||
], | ||
"plugins": [ | ||
["@babel/plugin-proposal-decorators", { "legacy": true }], | ||
["@babel/plugin-proposal-class-properties", { "loose": true }], | ||
[ | ||
"@babel/plugin-transform-react-jsx", | ||
{ | ||
"pragma": "h", | ||
"pragmaFrag": "Fragment" | ||
} | ||
] | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.