-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1395 from Conflux-Chain/dev
release 2.7.2
- Loading branch information
Showing
97 changed files
with
7,970 additions
and
4,896 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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# shared basic environment variable | ||
# the build tool will load this file with any NODE_ENV | ||
SNOWPACK_PUBLIC_FLUENT_VERSION=2.6.2 | ||
|
||
SNOWPACK_PUBLIC_FLUENT_VERSION=2.6.3 |
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 |
---|---|---|
|
@@ -34,12 +34,12 @@ jobs: | |
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: "yarn" | ||
cache: 'yarn' | ||
node-version: ${{ matrix.node-version }} | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: "adopt" | ||
java-version: "11" | ||
distribution: 'adopt' | ||
java-version: '11' | ||
- name: Install clojure tools | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
|
@@ -104,11 +104,18 @@ jobs: | |
- name: build and release | ||
env: | ||
SNOWPACK_PUBLIC_SENTRY_DSN: ${{ secrets.SNOWPACK_PUBLIC_SENTRY_DSN }} | ||
SNOWPACK_PUBLIC_FLUENT_ENV: "debug-release" | ||
SNOWPACK_PUBLIC_FLUENT_ENV: 'debug-release' | ||
SNOWPACK_PUBLIC_FLUENT_VERSION: ${{ fromJSON(steps.get-release-version-and-tag.outputs.result).version }} | ||
run: yarn prod:release | ||
run: yarn build | ||
|
||
- name: zip files | ||
run: | | ||
cd ./dist | ||
zip -r ./chrome.zip ./chrome | ||
zip -r ./firefox.zip ./firefox | ||
zip -r ./edge.zip ./edge | ||
- uses: shogo82148/actions-upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: releases/* | ||
asset_path: dist/*.zip |
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 |
---|---|---|
|
@@ -94,12 +94,19 @@ jobs: | |
SNOWPACK_PUBLIC_SENTRY_DSN: ${{ secrets.SNOWPACK_PUBLIC_SENTRY_DSN }} | ||
SNOWPACK_PUBLIC_FLUENT_ENV: "production" | ||
SNOWPACK_PUBLIC_FLUENT_VERSION: ${{ steps.dotenv.outputs.SNOWPACK_PUBLIC_FLUENT_VERSION }} | ||
run: yarn prod:release | ||
run: yarn build | ||
|
||
- name: zip files | ||
run: | | ||
cd ./dist | ||
zip -r ./chrome.zip ./chrome | ||
zip -r ./firefox.zip ./firefox | ||
zip -r ./edge.zip ./edge | ||
- uses: shogo82148/actions-upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: releases/* | ||
asset_path: dist/*.zip | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/[email protected] | ||
|
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,6 +1,7 @@ | ||
{ | ||
"name": "helios", | ||
"private": true, | ||
"version": "2.7.2", | ||
"workspaces": [ | ||
"websites/*", | ||
"packages/doc-ui/*", | ||
|
@@ -56,7 +57,14 @@ | |
"test:unit": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest --no-cache --testPathIgnorePatterns '.*\\.integration\\.test\\.jsx?'", | ||
"test:integration": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test node ./scripts/integration-test.js --no-cache --config='./integration.jest.config.js'", | ||
"contract:compile": "bash ./scripts/solc.sh", | ||
"contract:watch": "watchexec --restart --on-busy-update queue -w ./contracts/ --debounce 500 yarn run contract:compile" | ||
"contract:watch": "watchexec --restart --on-busy-update queue -w ./contracts/ --debounce 500 yarn run contract:compile", | ||
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --config ./scripts/webpack.config.dev.mjs", | ||
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --config ./scripts/webpack.config.dev.mjs", | ||
"dev:edge": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=edge webpack --config ./scripts/webpack.config.dev.mjs", | ||
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack --config ./scripts/webpack.config.prod.mjs", | ||
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack --config ./scripts/webpack.config.prod.mjs", | ||
"build:edge": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=edge webpack --config ./scripts/webpack.config.prod.mjs", | ||
"build": "yarn build:chrome && yarn build:firefox && yarn build:edge" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.17.9", | ||
|
@@ -81,17 +89,24 @@ | |
"@types/finalhandler": "^1", | ||
"@types/js-string-escape": "^1", | ||
"@types/serve-static": "^1", | ||
"@types/webpack-bundle-analyzer": "^4", | ||
"@yarnpkg/esbuild-plugin-pnp": "3.0.0-rc.2", | ||
"@yqrashawn/snowpack": "3.8.6-fix-6", | ||
"autoprefixer": "^10.4.7", | ||
"autoprefixer": "10.4.20", | ||
"babel-loader": "8.2.4", | ||
"browserslist": "^4.20.4", | ||
"buffer": "6.0.3", | ||
"concurrently": "^7.2.1", | ||
"copy-webpack-plugin": "12.0.2", | ||
"cross-env": "^7.0.3", | ||
"cross-fetch": "4.0.0", | ||
"css-loader": "7.1.2", | ||
"cssnano": "5.1.11", | ||
"dot-env": "^0.0.1", | ||
"dotenv-expand": "^8.0.3", | ||
"dotenv-webpack": "8.1.0", | ||
"esbuild": "0.14.43", | ||
"esbuild-loader": "4.2.2", | ||
"esbuild-plugin-alias": "0.2.1", | ||
"esbuild-plugin-browserslist": "0.4.10", | ||
"esbuild-style-plugin": "1.6.0", | ||
|
@@ -107,16 +122,20 @@ | |
"finalhandler": "1.2.0", | ||
"fs-extra": "^10.1.0", | ||
"highlight.js": "9.18.5", | ||
"html-webpack-plugin": "5.6.0", | ||
"husky": "^8.0.1", | ||
"identity-obj-proxy": "3.0.0", | ||
"jest": "^27.5.1", | ||
"jest": "29.7.0", | ||
"jest-environment-jsdom": "29.7.0", | ||
"jest-webextension-mock": "^3.7.22", | ||
"js-string-escape": "1.0.1", | ||
"lint-staged": "^13.0.1", | ||
"mini-css-extract-plugin": "2.9.0", | ||
"mustache": "^4.2.0", | ||
"nock": "13.2.6", | ||
"npm-run-all": "^4.1.5", | ||
"postcss": "^8.4.14", | ||
"postcss-loader": "8.1.1", | ||
"prettier": "^2.6.2", | ||
"prettier-plugin-solidity": "1.0.0-beta.18", | ||
"ramda": "^0.28.0", | ||
|
@@ -127,12 +146,20 @@ | |
"rimraf": "^3.0.2", | ||
"serve-static": "1.15.0", | ||
"shadow-cljs": "^2.19.4", | ||
"stream-browserify": "3.0.0", | ||
"style-loader": "4.0.0", | ||
"stylelint": "^14.9.0", | ||
"stylelint-config-prettier": "^9.0.3", | ||
"stylelint-config-standard": "^26.0.0", | ||
"tailwindcss": "^3.1.1", | ||
"wait-for-expect": "3.0.2", | ||
"web-ext": "7.0.0", | ||
"webpack": "5.93.0", | ||
"webpack-bundle-analyzer": "4.10.2", | ||
"webpack-cli": "5.1.4", | ||
"webpack-merge": "6.0.1", | ||
"wext-manifest-loader": "2.4.2", | ||
"wext-manifest-webpack-plugin": "1.4.1", | ||
"zip-a-folder": "1.1.3" | ||
}, | ||
"nohoist": [ | ||
|
@@ -203,5 +230,8 @@ | |
"no-descending-specificity": null | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
"@svgr/webpack": "8.1.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
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,6 +1,6 @@ | ||
{ | ||
"name": "browser-extension", | ||
"version": "0.0.9", | ||
"version": "0.0.11", | ||
"main": "index.js", | ||
"author": "yqrashawn <[email protected]>", | ||
"license": "MIT", | ||
|
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.