Skip to content

Commit 9d1871b

Browse files
authored
Merge pull request #15 from grammarly/update-peer-dependencies
Change peerDependencies versions
2 parents 813c4d2 + 5160076 commit 9d1871b

12 files changed

+108
-95
lines changed

.travis.yml

+14-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,25 @@ cache:
99
- examples/todomvc/node_modules
1010
- test/manual/node_modules
1111

12+
env:
13+
global:
14+
- V_REACT=16.2.0 V_REACT_TYPES=16.0.33 V_REACT_DOM_TYPES=16.0.3
15+
matrix:
16+
- V_RXJS=5.5.6
17+
- V_RXJS=5.*
18+
19+
before_install:
20+
- yarn add react@$V_REACT react-dom@$V_REACT @types/react@$V_REACT_TYPES @types/react-dom@$V_REACT_DOM_TYPES rxjs@$V_RXJS
21+
- cd ./examples/all && yarn add react@$V_REACT react-dom@$V_REACT @types/react@$V_REACT_TYPES @types/react-dom@$V_REACT_DOM_TYPES rxjs@$V_RXJS && cd ../..
22+
- cd ./examples/todomvc && yarn add react@$V_REACT react-dom@$V_REACT @types/react@$V_REACT_TYPES @types/react-dom@$V_REACT_DOM_TYPES rxjs@$V_RXJS && cd ../..
23+
- cd ./test/manual && yarn add react@$V_REACT react-dom@$V_REACT @types/react@$V_REACT_TYPES @types/react-dom@$V_REACT_DOM_TYPES rxjs@$V_RXJS && cd ../..
24+
1225
jobs:
1326
include:
14-
- script: npm run test:unit
15-
- script: npm run test:examples
16-
- script: npm run test:todomvc
17-
- script: npm run test:manual
1827
- stage: github release
1928
script: npm run build && npm pack
2029
deploy:
30+
env: V_RXJS=5.5.6
2131
provider: releases
2232
api_key:
2333
secure: k+Pvk4XKUjjVjc7jJ8OVW4fjOc8dFacupYjEZ3qV8JAFPSCpLcJi0ijGHZx44r/EaaVaVMBamGCtUQR1eotq8xturxfQZz6Jug+Eu6zOUh1KqVNzqGyv4y7UfLT5HHq7bthFBmdJ7gIN0hm0Fvi0/xm7FZWoPeucnhu31WQ16dSFUw5HBMLgjDk7IaKyVslCrERwccBshxYRuwy3+Qs3kvmwu0QHGxnZmlgNdacKdgXcrdw6QfJOmAQsoidbyhIaCfxmh/ZQESCDU5WIOBjoZnEh3qZlGxvgUPUVp7bYZ68Q3g0/Xs2y5khyIKwtlCDum5E7GGUUwXtuX1WltfhWhKLtaeFN68OANI9GZTaLYWiBYsF32szkvsjB4NL8t5rsPFJ0D4zzY9WGzaBPVtE3JmwrSpPm+M2A2gbgmEzh7CT+UFIWtmNcKtQkuLVBTNnpgMBhW2XRQmVlpvMfykQuQbISsypeUqqNyIQ5br87zWIILfdGkcminSM4qtESvO/Ltd3/JxfZIv2Xdc3oq0GpB+Pl62EWGn8hnAJ0FcWX/XDTTpDLWgld26VchfQp3+T5k4ZxMyl8lSuR0okPzj+GpLkoW2hc8fqtEVcTIwU+53C/wKcPWvBbf5WTHryDLXYptjAXhOorSIybfzeVkGSbaejH7ROQBKm7n53kjy1OGv0=

examples/all/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"npm": ">=3.0.0"
99
},
1010
"scripts": {
11-
"preinstall": "cd ../.. && (yarn || npm i) && npm run build",
1211
"build:webpack": "NODE_ENV=production webpack --config webpack/webpack.prod.js",
1312
"build": "npm run clean && npm run build:static && npm run build:webpack",
1413
"build:static": "cp -r ./static ./build",
@@ -20,18 +19,18 @@
2019
"author": "Grammarly, Inc.",
2120
"license": "Apache-2.0",
2221
"devDependencies": {
23-
"@grammarly/focal": "file:../../",
22+
"@grammarly/focal": "0.6.436",
2423
"@grammarly/tslint-config": "^0.3.1",
25-
"@types/react": "15.0.38",
26-
"@types/react-dom": "15.5.1",
24+
"@types/react": "16.0.33",
25+
"@types/react-dom": "16.0.3",
2726
"css-loader": "^0.26.1",
2827
"express": "^4.14.0",
29-
"react": "15.6.1",
30-
"react-dom": "15.6.1",
28+
"react": "16.2.0",
29+
"react-dom": "16.2.0",
3130
"react-transform-catch-errors": "^1.0.2",
3231
"react-transform-hmr": "^1.0.4",
3332
"redbox-react": "^1.3.0",
34-
"rxjs": "5.4.2",
33+
"rxjs": "5.5.6",
3534
"style-loader": "^0.13.1",
3635
"styled-components": "1.4.4",
3736
"todomvc-app-css": "^2.0.6",
@@ -41,6 +40,7 @@
4140
"typescript": "2.4.1",
4241
"webpack": "^1.13.2",
4342
"webpack-dev-middleware": "^1.6.1",
43+
"webpack-fail-plugin": "2.0.0",
4444
"webpack-hot-middleware": "^2.12.2"
4545
}
4646
}

examples/all/webpack/webpack.dev.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var webpack = require('webpack');
22
var path = require('path');
3+
var failPlugin = require('webpack-fail-plugin');
34

45
var APP_DIR = path.join(__dirname, '..', 'src');
56

@@ -38,7 +39,8 @@ module.exports = {
3839
},
3940
plugins: [
4041
new webpack.HotModuleReplacementPlugin(),
41-
new webpack.NoErrorsPlugin()
42+
new webpack.NoErrorsPlugin(),
43+
failPlugin
4244
],
4345
resolve: {
4446
root: [path.resolve('../src')],

examples/all/webpack/webpack.prod.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var path = require('path');
22
var webpack = require('webpack');
3+
var failPlugin = require('webpack-fail-plugin');
34

45
var APP_DIR = path.join(__dirname, '..', 'src');
56

@@ -41,7 +42,8 @@ module.exports = {
4142
compressor: {
4243
warnings: false
4344
}
44-
})
45+
}),
46+
failPlugin
4547
],
4648
resolve: {
4749
root: [path.resolve('../src')],

examples/todomvc/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"npm": ">=3.0.0"
99
},
1010
"scripts": {
11-
"preinstall": "cd ../.. && (yarn || npm i) && npm run build",
1211
"build:webpack": "NODE_ENV=production webpack --config webpack/webpack.prod.js",
1312
"build": "npm run clean && npm run build:static && npm run build:webpack",
1413
"build:static": "cp -r ./static ./build",
@@ -20,24 +19,25 @@
2019
"author": "Grammarly, Inc.",
2120
"license": "Apache-2.0",
2221
"devDependencies": {
23-
"@grammarly/focal": "file:../../",
22+
"@grammarly/focal": "0.6.436",
2423
"@grammarly/tslint-config": "^0.3.1",
25-
"@types/react": "15.0.38",
26-
"@types/react-dom": "15.5.1",
24+
"@types/react": "16.0.33",
25+
"@types/react-dom": "16.0.3",
2726
"express": "^4.14.0",
28-
"react": "15.6.1",
29-
"react-dom": "15.6.1",
27+
"react": "16.2.0",
28+
"react-dom": "16.2.0",
3029
"react-transform-catch-errors": "^1.0.2",
3130
"react-transform-hmr": "^1.0.4",
3231
"redbox-react": "^1.3.0",
33-
"rxjs": "5.4.2",
32+
"rxjs": "5.5.6",
3433
"todomvc-app-css": "^2.0.6",
3534
"ts-loader": "^2.3.0",
3635
"tslint": "^4.1.1",
3736
"tslint-loader": "^3.3.0",
3837
"typescript": "2.4.1",
3938
"webpack": "^1.13.2",
4039
"webpack-dev-middleware": "^1.6.1",
40+
"webpack-fail-plugin": "2.0.0",
4141
"webpack-hot-middleware": "^2.12.2"
4242
}
4343
}

examples/todomvc/webpack/webpack.dev.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var webpack = require('webpack');
22
var path = require('path');
3+
var failPlugin = require('webpack-fail-plugin');
34

45
var APP_DIR = path.join(__dirname, '..', 'src');
56

@@ -31,7 +32,8 @@ module.exports = {
3132
},
3233
plugins: [
3334
new webpack.HotModuleReplacementPlugin(),
34-
new webpack.NoErrorsPlugin()
35+
new webpack.NoErrorsPlugin(),
36+
failPlugin
3537
],
3638
resolve: {
3739
root: [path.resolve('../src')],

examples/todomvc/webpack/webpack.prod.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var path = require('path');
22
var webpack = require('webpack');
3+
var failPlugin = require('webpack-fail-plugin');
34

45
var APP_DIR = path.join(__dirname, '..', 'src');
56

@@ -34,7 +35,8 @@ module.exports = {
3435
compressor: {
3536
warnings: false
3637
}
37-
})
38+
}),
39+
failPlugin
3840
],
3941
resolve: {
4042
root: [path.resolve('../src')],

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"clean": "rm -rf ./dist",
1313
"build": "npm run clean && tsc && npm run lint",
1414
"test": "npm run test:unit && npm run test:examples && npm run test:todomvc && npm run test:manual",
15-
"test:manual": "cd test/manual && rm -rf node_modules/@grammarly/focal && npm i --ignore-scripts && npm run build",
15+
"test:manual": "cd test/manual && npm i && npm run build",
1616
"test:unit": "npm run build && tape ./dist/test/**/*.js | tap-spec",
17-
"test:examples": "cd examples/all && rm -rf node_modules/@grammarly/focal && npm i --ignore-scripts && npm run build",
18-
"test:todomvc": "cd examples/todomvc && rm -rf node_modules/@grammarly/focal && npm i --ignore-scripts && npm run build",
17+
"test:examples": "cd examples/all && npm i && npm run build",
18+
"test:todomvc": "cd examples/todomvc && npm i && npm run build",
1919
"test:watch": "watch 'npm test' src test",
2020
"lint": "tslint --type-check --project tsconfig.json -c tslint.json",
2121
"preversion": "if ! [[ $(git rev-parse --abbrev-ref HEAD) == \"master\" ]]; then echo \"Not on the master branch.\" && exit 1; fi",
@@ -83,23 +83,23 @@
8383
"devDependencies": {
8484
"@grammarly/tslint-config": "0.5.1",
8585
"@types/node": "^6.0.34",
86+
"@types/react": "16.0.33",
87+
"@types/react-dom": "16.0.3",
8688
"@types/tape": "^4.2.27",
89+
"react": "16.2.0",
90+
"react-dom": "16.2.0",
91+
"rxjs": "5.5.6",
8792
"tap-spec": "^4.1.1",
8893
"tape": "^4.5.1",
8994
"tslint": "5.2.0",
9095
"typescript": "2.4.1",
91-
"watch": "^0.18.0",
92-
"@types/react": "15.0.38",
93-
"@types/react-dom": "15.5.1",
94-
"react": "15.6.1",
95-
"react-dom": "15.6.1",
96-
"rxjs": "5.4.2"
96+
"watch": "^0.18.0"
9797
},
9898
"peerDependencies": {
99-
"@types/react": "15.0.38",
100-
"@types/react-dom": "15.5.1",
101-
"react": "15.6.1",
102-
"react-dom": "15.6.1",
103-
"rxjs": "5.4.2"
99+
"@types/react": ">= 16.0.33 < 17.0.0-0",
100+
"@types/react-dom": ">= 16.0.3 < 17.0.0-0",
101+
"react": ">= 16.2.0 < 17.0.0-0",
102+
"react-dom": ">= 16.2.0 < 17.0.0-0",
103+
"rxjs": ">= 5.4.2 < 6.0.0-0"
104104
}
105105
}

test/manual/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"version": "0.0.0",
55
"main": "webpack/dev_server.js",
66
"scripts": {
7-
"preinstall": "cd ../.. && (yarn || npm i) && npm run build",
87
"build:webpack": "NODE_ENV=production webpack --config webpack/webpack.prod.js",
98
"build": "npm run clean && npm run build:static && npm run build:webpack",
109
"build:static": "cp -r ./static ./build",
@@ -16,24 +15,25 @@
1615
"author": "Grammarly, Inc.",
1716
"license": "(c) 2016 Grammarly",
1817
"devDependencies": {
19-
"@grammarly/focal": "file:../../",
18+
"@grammarly/focal": "0.6.436",
2019
"@grammarly/tslint-config": "^0.3.1",
21-
"@types/react": "15.0.38",
22-
"@types/react-dom": "15.5.1",
20+
"@types/react": "16.0.33",
21+
"@types/react-dom": "16.0.3",
2322
"express": "^4.14.0",
24-
"react": "15.6.1",
25-
"react-dom": "15.6.1",
23+
"react": "16.2.0",
24+
"react-dom": "16.2.0",
2625
"react-transform-catch-errors": "^1.0.2",
2726
"react-transform-hmr": "^1.0.4",
2827
"redbox-react": "^1.3.0",
29-
"rxjs": "5.4.2",
28+
"rxjs": "5.5.6",
3029
"todomvc-app-css": "^2.0.6",
3130
"ts-loader": "^2.3.0",
3231
"tslint": "^4.1.1",
3332
"tslint-loader": "^3.3.0",
3433
"typescript": "2.4.1",
3534
"webpack": "^1.13.2",
3635
"webpack-dev-middleware": "^1.6.1",
36+
"webpack-fail-plugin": "2.0.0",
3737
"webpack-hot-middleware": "^2.12.2"
3838
}
3939
}

test/manual/webpack/webpack.dev.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var webpack = require('webpack');
22
var path = require('path');
3+
var failPlugin = require('webpack-fail-plugin');
34

45
var APP_DIR = path.join(__dirname, '..', 'src');
56

@@ -31,7 +32,8 @@ module.exports = {
3132
},
3233
plugins: [
3334
new webpack.HotModuleReplacementPlugin(),
34-
new webpack.NoErrorsPlugin()
35+
new webpack.NoErrorsPlugin(),
36+
failPlugin
3537
],
3638
resolve: {
3739
root: [path.resolve('../src')],

test/test_react.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ test('react', t => {
4343

4444
testRender(t,
4545
<F.span style={fromConst({ color: 'red' })}></F.span>,
46-
'<span style="color:red;"></span>',
46+
'<span style="color:red"></span>',
4747
'Render F element with observable in style'
4848
)
4949

5050
testRender(t,
5151
<F.span style={fromConst({ color: 'red' })}>{fromConst('test')}</F.span>,
52-
'<span style="color:red;">test</span>',
52+
'<span style="color:red">test</span>',
5353
'Render F element with 2 observables'
5454
)
5555

@@ -125,7 +125,7 @@ test('react', t => {
125125
<F.div onClick={() => { /* no-op */ }} style={{ display: 'block', color: fromConst('red') }}>
126126
<F.span>Hello</F.span>
127127
</F.div>,
128-
'<div style="display:block;color:red;"><span>Hello</span></div>',
128+
'<div style="display:block;color:red"><span>Hello</span></div>',
129129
'div with onClick'
130130
)
131131

0 commit comments

Comments
 (0)