react-split-pane 0.1.87 → 0.1.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/README.md +135 -89
- package/dist/index.cjs.js +18 -1935
- package/dist/index.esm.js +15 -1934
- package/package.json +22 -12
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dist",
|
|
10
10
|
"index.d.ts"
|
|
11
11
|
],
|
|
12
|
-
"version": "0.1.
|
|
12
|
+
"version": "0.1.89",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
15
|
"url": "https://github.com/tomkp/react-split-pane"
|
|
@@ -28,19 +28,23 @@
|
|
|
28
28
|
"es6"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
-
"
|
|
31
|
+
"start": "parcel website/index.html",
|
|
32
|
+
"prebuild": "yarn run clean",
|
|
32
33
|
"build": "rollup -c",
|
|
33
34
|
"build:watch": "rollup -c --watch",
|
|
34
35
|
"clean": "rimraf dist",
|
|
36
|
+
"clean:website": "rimraf build",
|
|
37
|
+
"prebuild:website": "yarn run clean:website",
|
|
38
|
+
"build:website": "parcel build website/index.html -d build --public-url /react-split-pane/",
|
|
35
39
|
"test": "mochify -R spec --transform babelify",
|
|
36
40
|
"test:watch": "mochify -R spec --watch --transform babelify",
|
|
37
41
|
"test:coverage": "mochify --plugin [ mochify-istanbul --exclude '**/test/**' --report lcovonly ] --transform babelify && cat lcov.info | coveralls && rm lcov.info",
|
|
38
|
-
"website:start": "npm run start --prefix website",
|
|
39
|
-
"website:deploy": "npm run deploy --prefix website",
|
|
40
42
|
"prettier": "prettier --write '{src,test}/**/*.js'",
|
|
41
43
|
"lint": "eslint src test",
|
|
42
|
-
"release
|
|
43
|
-
"precommit": "lint-staged"
|
|
44
|
+
"release": "standard-version",
|
|
45
|
+
"precommit": "lint-staged",
|
|
46
|
+
"deploy": "gh-pages -d build",
|
|
47
|
+
"prepublishOnly": "yarn run test && yarn run build"
|
|
44
48
|
},
|
|
45
49
|
"husky": {
|
|
46
50
|
"hooks": {
|
|
@@ -56,6 +60,8 @@
|
|
|
56
60
|
"@babel/core": "^7.2.0",
|
|
57
61
|
"@babel/preset-env": "^7.2.0",
|
|
58
62
|
"@babel/preset-react": "^7.0.0",
|
|
63
|
+
"@emotion/core": "^10.0.22",
|
|
64
|
+
"@emotion/styled": "^10.0.23",
|
|
59
65
|
"@types/react": "^16.0.36",
|
|
60
66
|
"babel-eslint": "^10.0.1",
|
|
61
67
|
"babelify": "^10.0.0",
|
|
@@ -65,26 +71,30 @@
|
|
|
65
71
|
"cross-env": "^5.2.0",
|
|
66
72
|
"eslint": "^4.19.1",
|
|
67
73
|
"eslint-config-fbjs": "^2.1.0",
|
|
68
|
-
"eslint-config-prettier": "^
|
|
74
|
+
"eslint-config-prettier": "^6.5.0",
|
|
69
75
|
"eslint-config-react": "^1.1.7",
|
|
70
76
|
"eslint-plugin-babel": "^5.1.0",
|
|
71
77
|
"eslint-plugin-flowtype": "^2.49.3",
|
|
72
78
|
"eslint-plugin-jsx-a11y": "^6.0.3",
|
|
73
79
|
"eslint-plugin-prettier": "^2.6.0",
|
|
74
80
|
"eslint-plugin-react": "^7.9.1",
|
|
75
|
-
"eslint-plugin-relay": "^0.0.
|
|
81
|
+
"eslint-plugin-relay": "^0.0.28",
|
|
82
|
+
"gh-pages": "^2.1.1",
|
|
76
83
|
"husky": "^1.2.0",
|
|
77
84
|
"mochify": "^5.8.0",
|
|
78
85
|
"mochify-istanbul": "^2.4.2",
|
|
86
|
+
"parcel-bundler": "^1.12.4",
|
|
79
87
|
"prettier": "1.15.3",
|
|
80
88
|
"pretty-quick": "^1.8.0",
|
|
81
|
-
"react": "
|
|
82
|
-
"react-dom": "^16.
|
|
89
|
+
"react": ">=15",
|
|
90
|
+
"react-dom": "^16.0.0-0",
|
|
91
|
+
"react-router-dom": "^5.1.2",
|
|
83
92
|
"rimraf": "^2.6.2",
|
|
84
|
-
"rollup": "^0.
|
|
93
|
+
"rollup": "^0.68.2",
|
|
85
94
|
"rollup-plugin-babel": "^4.0.3",
|
|
86
95
|
"rollup-plugin-commonjs": "^9.1.3",
|
|
87
|
-
"rollup-plugin-node-resolve": "^
|
|
96
|
+
"rollup-plugin-node-resolve": "^4.2.4",
|
|
97
|
+
"standard-version": "^7.0.0"
|
|
88
98
|
},
|
|
89
99
|
"peerDependencies": {
|
|
90
100
|
"react": "^16.0.0-0",
|