Skip to content
This repository has been archived by the owner on Aug 24, 2019. It is now read-only.

Commit

Permalink
feat: upgrade to JSDOM v12 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge authored Sep 15, 2018
1 parent cc03a02 commit 949a80c
Show file tree
Hide file tree
Showing 11 changed files with 1,761 additions and 1,208 deletions.
13 changes: 0 additions & 13 deletions .babelrc

This file was deleted.

1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ module.exports = {
'lines-between-class-members': 'off',

'import/prefer-default-export': 'off',
'import/no-extraneous-dependencies': 'off',
},
}
13 changes: 13 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: '6',
},
},
],
],
plugins: ['@babel/plugin-proposal-class-properties'],
}
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
"test": "jest --runInBand"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.4",
"eslint": "^5.3.0",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.5.0",
"lerna": "^3.0.6",
"jest": "^23.6.0",
"lerna": "^3.4.0",
"prettier": "^1.14.2"
},
"workspaces": [
Expand Down
3 changes: 0 additions & 3 deletions packages/h2x-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,5 @@
"h2x-generate": "^1.0.0",
"h2x-parse": "^1.0.0",
"h2x-traverse": "^1.0.0"
},
"devDependencies": {
"h2x-types": "^1.0.0"
}
}
3 changes: 0 additions & 3 deletions packages/h2x-generate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,5 @@
},
"dependencies": {
"h2x-traverse": "^1.0.0"
},
"devDependencies": {
"h2x-parse": "^1.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/h2x-parse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"dependencies": {
"h2x-types": "^1.0.0",
"jsdom": "^11.10.0"
"jsdom": "^12.0.0"
}
}
3 changes: 0 additions & 3 deletions packages/h2x-plugin-jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,5 @@
},
"dependencies": {
"h2x-types": "^1.0.0"
},
"devDependencies": {
"h2x-core": "^1.0.0"
}
}
3 changes: 0 additions & 3 deletions packages/h2x-traverse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,5 @@
},
"dependencies": {
"h2x-types": "^1.0.0"
},
"devDependencies": {
"h2x-parse": "^1.0.0"
}
}
3 changes: 0 additions & 3 deletions packages/h2x-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,5 @@
"prebuild": "rm -rf lib/",
"build": "babel --config-file ../../babel.config.js -d lib --ignore \"**/*.test.js\" src",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"h2x-parse": "^1.0.0"
}
}
Loading

0 comments on commit 949a80c

Please sign in to comment.