File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 99* .map
1010.ropeproject /
1111.ruby-version
12- bin /
1312dist /
1413bower_components /
1514include /
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+
3+ const package = require ( '../package.json' ) ;
4+
5+ // Sorry everyone, this is the closest we can get to commenting on package.json
6+ // dependencies :(
7+ if ( package . devDependencies [ 'bourbon-neat' ] !== '~1.9' ) {
8+ // Wyrm is not compatible with Neat 2.0+, and Neat 1.9 at least pins a
9+ // node-sass version that doesn't require Python 2. The changes to Wyrm to
10+ // support Neat 2.0+ are all fairly minor changes, but it deeply affects the
11+ // grid system and might be more of a liability than an old release of Neat.
12+ // See: https://github.com/readthedocs/sphinx_rtd_theme/pull/771
13+ console . error (
14+ 'bourbon-neat 1.9 is required, Wyrm is not compatible with Neat 2.0+.'
15+ ) ;
16+ console . error (
17+ 'The expected selector for the bourbon-neat dependency in package.json is "~1.9".'
18+ ) ;
19+ process . exit ( 1 ) ;
20+ }
Original file line number Diff line number Diff line change 55 "private" : true ,
66 "scripts" : {
77 "dev" : " webpack-dev-server --open --config webpack.dev.js" ,
8- "build" : " webpack --config webpack.prod.js"
8+ "build" : " webpack --config webpack.prod.js" ,
9+ "preinstall" : " bin/preinstall.js"
910 },
1011 "dependencies" : {},
1112 "devDependencies" : {
You can’t perform that action at this time.
0 commit comments