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.
Merge branch 'didi:master' into master
- Loading branch information
Showing
1,519 changed files
with
130,727 additions
and
95,334 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,8 @@ | ||
# Changesets | ||
|
||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works | ||
with multi-package repos, or single-package repos to help you version and publish your code. You can | ||
find the full documentation for it [in our repository](https://github.com/changesets/changesets) | ||
|
||
We have a quick list of common questions to get you started engaging with this project in | ||
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) |
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,20 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "master", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [ | ||
"engine-browser-app", | ||
"engine-node-app", | ||
"feature-examples", | ||
"material-ui-app", | ||
"next-app", | ||
"vue3-app" | ||
], | ||
"extends": [], | ||
"pipeline": {} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!--- Provide a general summary of your changes in the Title above ---> | ||
|
||
### Description | ||
|
||
<!--- Describe your changes in detail ---> | ||
|
||
### Motivation and Context | ||
|
||
<!--- Why is this change required? What problem does it solve? ---> | ||
<!--- If it fixes an open issue, please link to the issue here. ---> | ||
<!--- GIF or snapshot should be provided if includes UI/interactive modification. ---> | ||
<!--- How to fix the problem, and list final API implementation and usage sample if that is an new feature. ---> | ||
|
||
### Types of changes | ||
|
||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: ---> | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to change) | ||
- [ ] Enhancement (changes that improvement of current feature or performance) | ||
- [ ] Refactoring (changes that neither fixes a bug nor adds a feature) | ||
- [ ] Test Case (changes that add missing tests or correct existing tests) | ||
- [ ] Code style optimization (changes that do not affect the meaning of the code) | ||
- [ ] Docs (changes that add or update documentation) | ||
- [ ] Chore (changes that do not modify src or test files) | ||
|
||
### Self Check before Merge | ||
|
||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. ---> | ||
<!--- If you're ensure about any of these, don't hesitate to ask. We're here to help! ---> | ||
- [ ] My code follows the code style of this project | ||
- [ ] My change requires a change to the documentation | ||
- [ ] I have updated the documentation accordingly | ||
- [ ] I have read the [**CONTRIBUTING**](https://github.com/didi/LogicFlow/blob/next/CONTRUBUTING.en-US.md) document | ||
- [ ] I have added tests to cover my changes. | ||
- [ ] All new and existing tests passed. |
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,4 +1,4 @@ | ||
name: issue checker | ||
name: Issue Checker | ||
|
||
on: | ||
issues: | ||
|
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,29 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install Dependencies | ||
run: pnpm install | ||
|
||
- name: Create Release Pull Request | ||
uses: changesets/action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,25 @@ | ||
name: 🤝 Update Contributors | ||
on: | ||
schedule: | ||
- cron: '0 1 * * *' | ||
push: | ||
branches: | ||
- master | ||
- next | ||
- next-major | ||
- alpha | ||
- beta | ||
jobs: | ||
contrib-readme-job: | ||
runs-on: ubuntu-latest | ||
name: A job to automate contributors in readme | ||
# Only run workflow if the repository is not a fork | ||
if: ${{ !github.event.repository.fork }} | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- uses: wow-actions/contributors-list@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.CONTRIBUTORS_TOKEN }} | ||
excludeUsers: semantic-release-bot ImgBotApp |
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,30 @@ | ||
.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 | ||
~* | ||
|
||
.umi/ | ||
tmp | ||
tmp-production |
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,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn commitlint --edit $1 | ||
npx --no -- commitlint --edit ${1} |
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 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn lint-staged | ||
npx lint-staged |
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,6 +12,7 @@ npm-debug.log | |
node_modules | ||
config.gypi | ||
*.orig | ||
|
||
example | ||
public | ||
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
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 | ||
} | ||
} |
Oops, something went wrong.