Skip to content

Commit 9738652

Browse files
committed
Merge branch 'master' into dev-1.0
# Conflicts: # package.json
2 parents 4791bd4 + d4ae6a3 commit 9738652

File tree

7 files changed

+23
-12
lines changed

7 files changed

+23
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ build/
44
node_modules/
55
npm-debug.log
66
lib/
7+
yarn.lock

dist/react-tabs.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-tabs.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-tabs.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-tabs.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@
4242
"devDependencies": {
4343
"babel-cli": "^6.9.0",
4444
"babel-core": "^6.9.1",
45-
"babel-eslint": "^6.0.4",
46-
"babel-jest": "^15.0.0",
45+
"babel-eslint": "^7.0.0",
46+
"babel-jest": "^16.0.0",
4747
"babel-loader": "^6.2.4",
4848
"babel-plugin-transform-class-properties": "^6.11.5",
4949
"babel-plugin-transform-object-rest-spread": "^6.8.0",
5050
"babel-preset-latest": "^6.14.0",
5151
"babel-preset-react": "^6.5.0",
5252
"babel-preset-stage-1": "^6.5.0",
53-
"cross-env": "^2.0.0",
53+
"cross-env": "^3.0.0",
5454
"enzyme": "^2.3.0",
5555
"eslint": "^3.5.0",
5656
"eslint-config-airbnb": "^11.0.0",
5757
"eslint-plugin-import": "^1.8.0",
5858
"eslint-plugin-jsx-a11y": "^2.2.2",
5959
"eslint-plugin-react": "^6.2.1",
60-
"jest-cli": "^15.0.0",
60+
"jest-cli": "^16.0.0",
6161
"react": "^15.0.0",
6262
"react-addons-test-utils": "^15.0.0",
6363
"react-dom": "^15.0.0",

webpack.build.js

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,18 @@ module.exports = {
2424
libraryTarget: 'umd'
2525
},
2626
externals: {
27-
'react': 'React',
28-
'react-dom': 'ReactDOM'
27+
'react': {
28+
root: 'React',
29+
commonjs2: 'react',
30+
commonjs: 'react',
31+
amd: 'react'
32+
},
33+
'react-dom': {
34+
root: 'ReactDOM',
35+
commonjs2: 'react-dom',
36+
commonjs: 'react-dom',
37+
amd: 'react-dom'
38+
}
2939
},
3040
module: {
3141
loaders: [

0 commit comments

Comments
 (0)