forked from goatslacker/alt
-
-
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 pull request goatslacker#1 from xiangxn/update-node
upgrade node to v16, and update dependencies
- Loading branch information
Showing
25 changed files
with
6,553 additions
and
11,597 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,8 +1,16 @@ | ||
{ | ||
"presets": ["env", "babel-preset-react", "airbnb", "babel-preset-stage-0"], | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ "modules": false, "targets": { "node": "current" } } | ||
], | ||
["@babel/preset-react", { "targets": { "node": "current" } }], | ||
"airbnb" | ||
], | ||
"plugins": [ | ||
"add-module-exports", | ||
"transform-class-properties", | ||
["transform-es2015-classes", { loose: true }], | ||
"@babel/plugin-transform-classes", | ||
["transform-es2015-classes", { "loose": true }] | ||
] | ||
} |
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 |
---|---|---|
|
@@ -3,7 +3,6 @@ coverage | |
node_modules | ||
npm-debug.log | ||
test/browser/tests.js | ||
lib | ||
utils/* | ||
flux.js | ||
flux-build.js | ||
|
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 @@ | ||
sudo: false | ||
language: node_js | ||
script: npm run lint && npm run coverage | ||
node_js: 16 | ||
script: yarn run lint && yarn run coverage | ||
after_script: cat ./coverage/lcov.info | coveralls | ||
node_js: | ||
- "stable" |
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
Oops, something went wrong.