-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated packages to include their imports
- Loading branch information
0 parents
commit 669cc16
Showing
4,691 changed files
with
186,119 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,11 @@ | ||
[target.arm-unknown-linux-gnueabihf] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
|
||
[target.armv7-unknown-linux-gnueabihf] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
|
||
[target.aarch64-unknown-linux-gnu] | ||
linker = "aarch64-linux-gnu-gcc" | ||
|
||
[target.aarch64-unknown-linux-musl] | ||
linker = "aarch64-linux-musl-gcc" |
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,15 @@ | ||
# https://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
max_line_length = 0 | ||
trim_trailing_whitespace = 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# ESLint does not support both | ||
# - import used as a function, and | ||
# - the export statement | ||
# in the same file | ||
|
||
flow-typed | ||
|
||
vendor | ||
packages/*/*/test/integration/** | ||
packages/*/*/test/mochareporters.json | ||
packages/core/integration-tests/test/input/** | ||
packages/core/utils/test/input/** | ||
packages/utils/create-react-app/templates | ||
packages/examples | ||
|
||
# Generated by the build | ||
lib | ||
dist | ||
/test/dist | ||
/test/input | ||
*.min.js | ||
|
||
coverage | ||
node_modules | ||
tmp | ||
fixtures |
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,3 @@ | ||
{ | ||
"extends": "@parcel/eslint-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,40 @@ | ||
[ignore] | ||
.*/node_modules/@choojs/**/.* | ||
.*/node_modules/config-chain/.* | ||
.*/node_modules/graphviz/documentation.json | ||
<PROJECT_ROOT>/.nyc_output/.* | ||
.*/tmp/**/.* | ||
.*/.parcel-cache/.* | ||
<PROJECT_ROOT>/packages/core/integration-tests/dist/** | ||
<PROJECT_ROOT>/packages/core/integration-tests/test/input/** | ||
<PROJECT_ROOT>/packages/core/integration-tests/test/integration/babel-strip-flow-types/** | ||
<PROJECT_ROOT>/packages/core/integration-tests/test/integration/diagnostic-sourcemap/** | ||
.*/node_modules/resolve/**/.* | ||
|
||
[untyped] | ||
.*/node_modules/graphql/error/GraphQLError.js.flow | ||
|
||
[include] | ||
|
||
[libs] | ||
flow-libs/ | ||
|
||
[lints] | ||
implicit-inexact-object=error | ||
untyped-type-import=error | ||
|
||
[options] | ||
module.system.node.main_field=source | ||
module.system.node.main_field=main | ||
|
||
[strict] | ||
nonstrict-import | ||
sketchy-null-number | ||
sketchy-null-string | ||
sketchy-null-mixed | ||
unclear-type | ||
untyped-import | ||
untyped-type-import | ||
|
||
[version] | ||
0.184.0 |
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 @@ | ||
# Always use unix style line-endings | ||
* text eol=lf | ||
*.jpeg binary | ||
*.jpg binary | ||
*.png binary | ||
*.wasm binary | ||
*.woff2 binary |
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 @@ | ||
open_collective: parcel |
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,62 @@ | ||
--- | ||
name: 🐛 Bug Report | ||
about: Did something not work as expected? | ||
--- | ||
|
||
<!--- | ||
Thanks for filing an issue 😄 ! Before you submit, please read the following: | ||
Search open/closed issues before submitting since someone might have asked the same thing before! | ||
--> | ||
|
||
# 🐛 bug report | ||
|
||
<!--- Provide a general summary of the issue here --> | ||
|
||
## 🎛 Configuration (.babelrc, package.json, cli command) | ||
|
||
<!--- If describing a bug, tell us what your babel configuration looks like --> | ||
|
||
```js | ||
{ | ||
"your": { "config": "here" } | ||
} | ||
``` | ||
|
||
## 🤔 Expected Behavior | ||
|
||
<!--- Tell us what should happen --> | ||
|
||
## 😯 Current Behavior | ||
|
||
<!--- Tell us what happens instead of the expected behavior --> | ||
|
||
<!--- If you are seeing an error, please include the full error message and stack trace --> | ||
|
||
## 💁 Possible Solution | ||
|
||
<!--- Not obligatory, but suggest a fix/reason for the bug --> | ||
|
||
## 🔦 Context | ||
|
||
<!--- How has this issue affected you? What are you trying to accomplish? --> | ||
|
||
<!--- Providing context helps us come up with a solution that is most useful in the real world --> | ||
|
||
## 💻 Code Sample | ||
|
||
<!-- Please provide a code repository, gist, code snippet or sample files to reproduce the issue --> | ||
|
||
## 🌍 Your Environment | ||
|
||
<!--- Include as many relevant details about the environment you experienced the bug in --> | ||
|
||
| Software | Version(s) | | ||
| ---------------- | ---------- | | ||
| Parcel | | ||
| Node | | ||
| npm/Yarn | | ||
| Operating System | | ||
|
||
<!-- Love parcel? Please consider supporting our collective: | ||
👉 https://opencollective.com/parcel/donate --> |
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,39 @@ | ||
--- | ||
name: 🙋 Feature Request | ||
about: Want us to add something to parcel? | ||
--- | ||
|
||
<!--- | ||
Thanks for filing an issue 😄 ! Before you submit, please read the following: | ||
Search open/closed issues before submitting since someone might have asked the same thing before! | ||
--> | ||
|
||
# 🙋 feature request | ||
|
||
<!--- Provide a general summary of the issue here --> | ||
|
||
## 🤔 Expected Behavior | ||
|
||
<!--- Tell us how the feature should work --> | ||
|
||
## 😯 Current Behavior | ||
|
||
<!--- Explain the difference from current behavior --> | ||
|
||
## 💁 Possible Solution | ||
|
||
<!--- Ideas how to implement this feature or a similar solution/workaround that already exists --> | ||
|
||
## 🔦 Context | ||
|
||
<!--- How has this issue affected you? What are you trying to accomplish? --> | ||
|
||
<!--- Providing context helps us come up with a solution that is most useful in the real world --> | ||
|
||
## 💻 Examples | ||
|
||
<!-- Examples help us understand the requested feature better --> | ||
|
||
<!-- Love parcel? Please consider supporting our collective: | ||
👉 https://opencollective.com/parcel/donate --> |
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,27 @@ | ||
--- | ||
name: 💬 Request For Comment (RFC) | ||
about: Feature discussion | ||
--- | ||
|
||
<!--- | ||
Thanks for filing an issue 😄 ! Before you submit, please read the following: | ||
Search open/closed issues before submitting since someone might have asked the same thing before! | ||
--> | ||
|
||
# 💬 RFC | ||
|
||
<!--- Provide a detailed summary of the issue here --> | ||
|
||
## 🔦 Context | ||
|
||
<!--- How has this issue affected you? What are you trying to accomplish? --> | ||
|
||
<!--- Providing context helps us come up with a solution that is most useful in the real world --> | ||
|
||
## 💻 Examples | ||
|
||
<!-- Examples help us understand the requested feature better --> | ||
|
||
<!-- Love parcel? Please consider supporting our collective: | ||
👉 https://opencollective.com/parcel/donate --> |
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,9 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Ask a question | ||
url: https://github.com/parcel-bundler/parcel/discussions | ||
about: Please ask and answer questions here. | ||
- name: Documentation | ||
url: https://github.com/parcel-bundler/website | ||
about: Contribute and suggest documentation here. | ||
|
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,26 @@ | ||
<!--- | ||
Thanks for filing a pull request 😄 ! Before you submit, please read the following: | ||
Search open/closed issues before submitting since someone might have pushed the same thing before! | ||
--> | ||
|
||
# ↪️ Pull Request | ||
|
||
<!--- | ||
Provide a general summary of the pull request here | ||
Please look for any issues that this PR resolves and tag them in the PR. | ||
--> | ||
|
||
## 💻 Examples | ||
|
||
<!-- Examples help us understand the requested feature better --> | ||
|
||
## 🚨 Test instructions | ||
|
||
<!-- In case it is impossible (or too hard) to reliably test this feature/fix with unit tests, please provide test instructions! --> | ||
|
||
## ✔️ PR Todo | ||
|
||
- [ ] Added/updated unit tests for this change | ||
- [ ] Filled out test instructions (In case there aren't any unit tests) | ||
- [ ] Included links to related issues/PRs |
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,109 @@ | ||
on: pull_request | ||
|
||
name: Continuous Integration | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
cache: yarn | ||
- uses: actions-rs/toolchain@v1 | ||
- uses: Swatinem/rust-cache@v1 | ||
# use `--frozen-lockfile` to fail immediately if the committed yarn.lock needs updates | ||
# https://yarnpkg.com/lang/en/docs/cli/install/#toc-yarn-install-frozen-lockfile | ||
- run: yarn --frozen-lockfile | ||
- run: yarn lint | ||
|
||
flow: | ||
name: Flow | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
cache: yarn | ||
- run: yarn --frozen-lockfile | ||
- run: yarn flow check | ||
|
||
benchmarks: | ||
name: Benchmarks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: PR Benchmarks | ||
uses: parcel-bundler/parcel-benchmark-action@master | ||
env: | ||
PARCEL_BENCHMARK_APIKEY: ${{ secrets.PARCEL_BENCHMARK_APIKEY }} | ||
|
||
unit_tests: | ||
name: Unit tests (${{matrix.os}}, Node ${{matrix.node}}) | ||
strategy: | ||
matrix: | ||
node: [14, 16] | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{matrix.os}} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
cache: yarn | ||
node-version: ${{matrix.node}} | ||
- uses: actions-rs/toolchain@v1 | ||
- uses: Swatinem/rust-cache@v1 | ||
- name: Bump max inotify watches (Linux only) | ||
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p; | ||
if: ${{matrix.os == 'ubuntu-latest'}} | ||
- run: yarn --frozen-lockfile | ||
- run: yarn build-native-release | ||
- run: yarn test:unit | ||
|
||
integration_tests: | ||
name: Integration tests (${{matrix.os}}, Node ${{matrix.node}}) | ||
strategy: | ||
matrix: | ||
node: [14, 16] | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
# These tend to be quite flakey, so one failed instance shouldn't stop | ||
# others from potentially succeeding | ||
fail-fast: false | ||
runs-on: ${{matrix.os}} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
cache: yarn | ||
node-version: ${{matrix.node}} | ||
- uses: actions-rs/toolchain@v1 | ||
- uses: Swatinem/rust-cache@v1 | ||
- name: Bump max inotify watches (Linux only) | ||
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p; | ||
if: ${{matrix.os == 'ubuntu-latest'}} | ||
- run: yarn --frozen-lockfile | ||
- run: yarn build-native-release | ||
- run: yarn test:integration-ci | ||
# Similar to | ||
# https://github.com/marketplace/actions/publish-unit-test-results#use-with-matrix-strategy | ||
- name: Upload JUnit results | ||
if: always() | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Integration tests (${{matrix.os}}, node ${{matrix.node}}) | ||
path: "**/junit-*.xml" | ||
|
||
test_report: | ||
name: Test report | ||
runs-on: ubuntu-latest | ||
needs: | ||
[unit_tests, integration_tests] | ||
if: always() | ||
steps: | ||
- name: Create test report | ||
uses: mikepenz/action-junit-report@v2 | ||
with: | ||
report_paths: artifacts/**/*.xml |
Oops, something went wrong.