-
-
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.
Merge remote-tracking branch 'upstream/v2' into atlassian
* upstream/v2: (22 commits) Cross compile toolchains are built into docker image already Also fix release build Update centos node version v2.7.0 Changelog for v2.7.0 Use placeholder expression when replacing unused symbols (#8358) Lint (#8359) Add support for errorRecovery option in @parcel/transformer-css (#8352) VS Code Extension for Parcel (#8139) Add multi module compilation for elm (#8076) Bump terser from 5.7.2 to 5.14.2 (#8322) Bump node-forge from 1.2.1 to 1.3.0 (#8271) allow cjs config files on type module projects (#8253) inject script for hmr when there is only normal script in html (#8330) feat: support react refresh for @emotion/react (#8205) Update index.d.ts (#8293) remove charset from jsloader script set (#8346) Log resolved targets in verbose log level (#8254) Fix missing module in large app from Experimental Bundler (#8303) [Symbol Propagation] Non-deterministic bundle hashes (#8212) ...
- Loading branch information
Showing
158 changed files
with
5,736 additions
and
890 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 |
---|---|---|
|
@@ -37,7 +37,7 @@ jobs: | |
name: linux-gnu-x64 | ||
runs-on: ubuntu-latest | ||
container: | ||
image: docker.io/centos/nodejs-12-centos7 | ||
image: docker.io/adrienv1520/nodejs-16-centos7 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install yarn | ||
|
@@ -144,12 +144,6 @@ jobs: | |
profile: minimal | ||
override: true | ||
target: ${{ matrix.target }} | ||
- name: Install cross compile toolchains | ||
if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }} | ||
run: | | ||
curl -O http://musl.cc/aarch64-linux-musl-cross.tgz | ||
tar xzf aarch64-linux-musl-cross.tgz | ||
cp -R aarch64-linux-musl-cross/* /usr | ||
- uses: bahmutov/[email protected] | ||
- name: Build native packages | ||
run: yarn build-native-release | ||
|
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 |
---|---|---|
|
@@ -37,7 +37,7 @@ jobs: | |
name: linux-gnu-x64 | ||
runs-on: ubuntu-latest | ||
container: | ||
image: docker.io/centos/nodejs-12-centos7 | ||
image: docker.io/adrienv1520/nodejs-16-centos7 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install yarn | ||
|
@@ -144,12 +144,6 @@ jobs: | |
profile: minimal | ||
override: true | ||
target: ${{ matrix.target }} | ||
- name: Install cross compile toolchains | ||
if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }} | ||
run: | | ||
curl -O http://musl.cc/aarch64-linux-musl-cross.tgz | ||
tar xzf aarch64-linux-musl-cross.tgz | ||
cp -R aarch64-linux-musl-cross/* /usr | ||
- uses: bahmutov/[email protected] | ||
- name: Build native packages | ||
run: yarn build-native-release | ||
|
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 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}/packages/utils/parcelforvscode" | ||
], | ||
"name": "Launch Parcel for VSCode Extension", | ||
"outFiles": [ | ||
"${workspaceFolder}/packages/utils/parcelforvscode/out/**/*.js" | ||
], | ||
"preLaunchTask": "npm: compile - packages/utils/parcelforvscode", | ||
"request": "launch", | ||
"type": "pwa-extensionHost" | ||
} | ||
] | ||
} |
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,14 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "compile", | ||
"path": "packages/utils/parcelforvscode/", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"label": "npm: compile - packages/utils/parcelforvscode", | ||
"detail": "tsc -p ./" | ||
} | ||
] | ||
} |
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.