-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into agj/format-webpack-js
- Loading branch information
Showing
5 changed files
with
89 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
*.map | ||
.ropeproject/ | ||
.ruby-version | ||
bin/ | ||
dist/ | ||
bower_components/ | ||
include/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env node | ||
|
||
const package = require('../package.json'); | ||
|
||
// Sorry everyone, this is the closest we can get to commenting on package.json | ||
// dependencies :( | ||
if (package.devDependencies['bourbon-neat'] !== '~1.9') { | ||
// Wyrm is not compatible with Neat 2.0+, and Neat 1.9 at least pins a | ||
// node-sass version that doesn't require Python 2. The changes to Wyrm to | ||
// support Neat 2.0+ are all fairly minor changes, but it deeply affects the | ||
// grid system and might be more of a liability than an old release of Neat. | ||
// See: https://github.com/readthedocs/sphinx_rtd_theme/pull/771 | ||
console.error( | ||
'bourbon-neat 1.9 is required, Wyrm is not compatible with Neat 2.0+.' | ||
); | ||
console.error( | ||
'The expected selector for the bourbon-neat dependency in package.json is "~1.9".' | ||
); | ||
process.exit(1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters