Skip to content

Commit

Permalink
Merge pull request #1253 from IBM/node-12
Browse files Browse the repository at this point in the history
feat(project): support for node 12
  • Loading branch information
tay1orjones authored Jun 2, 2020
2 parents d93e73b + f0537ec commit 9a11db2
Show file tree
Hide file tree
Showing 7 changed files with 2,879 additions and 2,388 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.15.3
v12
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"configurations": [
{
"type": "node",
"runtimeVersion": "10.15.3",
"runtimeVersion": "12.17.0",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/lib/index.js"
},
{
"type": "node",
"runtimeVersion": "10.15.3",
"runtimeVersion": "12.17.0",
"request": "launch",
"name": "Jest All",
"program": "${workspaceFolder}/node_modules/.bin/jest",
Expand All @@ -28,7 +28,7 @@
},
{
"type": "node",
"runtimeVersion": "10.15.3",
"runtimeVersion": "12.17.0",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
Expand Down
47 changes: 23 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "carbon-addons-iot-react",
"engines": {
"node": "10.15.3",
"node": "12.x",
"yarn": "1.x"
},
"main": "lib/src/index.js",
Expand Down Expand Up @@ -77,7 +77,7 @@
]
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"@babel/runtime": "^7.10.2",
"@carbon/charts": "^0.30.18",
"@carbon/charts-react": "^0.30.18",
"@carbon/colors": "10.8.0",
Expand All @@ -89,7 +89,7 @@
"carbon-components-react": "7.10.3",
"carbon-icons": "^7.0.7",
"classnames": "^2.2.5",
"core-js": "3.6.4",
"core-js": "3.6.5",
"immutability-helper": "^2.9.0",
"js-file-download": "^0.4.7",
"lodash": "^4.17.13",
Expand Down Expand Up @@ -117,27 +117,27 @@
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-proposal-pipeline-operator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-do-expressions": "^7.10.1",
"@babel/plugin-proposal-export-default-from": "^7.10.1",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/plugin-proposal-function-sent": "^7.10.1",
"@babel/plugin-proposal-json-strings": "^7.10.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-numeric-separator": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-proposal-pipeline-operator": "^7.10.1",
"@babel/plugin-proposal-throw-expressions": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/plugin-syntax-import-meta": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-flow": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@ibma/aat": "https://able.ibm.com/tools/dist/ibma-aat-2.0.8.tgz",
Expand Down Expand Up @@ -223,7 +223,6 @@
"stylelint": "^10.1.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.10.0",
"weak": "^1.0.1",
"weak-napi": "^2.0.1",
"webpack": "^4.28.4",
"whatwg-fetch": "^3.0.0"
Expand Down
Loading

0 comments on commit 9a11db2

Please sign in to comment.