mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
Fix tests (#5176)
* Fix cake test:integrations per newer Webpack * Update dependencies * Update dependencies
This commit is contained in:
parent
ff24e5ce52
commit
ec034e2673
4 changed files with 1107 additions and 1135 deletions
3
Cakefile
3
Cakefile
|
@ -486,6 +486,9 @@ task 'test:integrations', 'test the module integrated with other libraries and e
|
|||
webpack = require 'webpack'
|
||||
webpack {
|
||||
entry: './'
|
||||
optimization:
|
||||
# Webpack’s minification causes the CoffeeScript module to fail some tests.
|
||||
minimize: off
|
||||
output:
|
||||
path: tmpdir
|
||||
filename: 'coffeescript.js'
|
||||
|
|
File diff suppressed because one or more lines are too long
2213
package-lock.json
generated
2213
package-lock.json
generated
File diff suppressed because it is too large
Load diff
14
package.json
14
package.json
|
@ -39,16 +39,16 @@
|
|||
"url": "git://github.com/jashkenas/coffeescript.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.0.0",
|
||||
"@babel/preset-env": "^7.0.0",
|
||||
"babel-preset-minify": "^0.4.3",
|
||||
"codemirror": "^5.39.2",
|
||||
"@babel/core": "^7.4.0",
|
||||
"@babel/preset-env": "^7.4.2",
|
||||
"babel-preset-minify": "^0.5.0",
|
||||
"codemirror": "^5.45.0",
|
||||
"docco": "~0.8.0",
|
||||
"highlight.js": "~9.12.0",
|
||||
"jison": ">=0.4.18",
|
||||
"highlight.js": "~9.15.6",
|
||||
"jison": "^0.4.18",
|
||||
"markdown-it": "~8.4.2",
|
||||
"underscore": "~1.9.1",
|
||||
"webpack": "~4.17.2"
|
||||
"webpack": "~4.29.6"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue