mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-07 13:07:22 +08:00
Add es6-promise polyfill to webpack config
This commit is contained in:
parent
179bb24fbf
commit
7e3e9f31aa
@ -37,6 +37,7 @@
|
||||
"webpack": "^1.12.13"
|
||||
},
|
||||
"dependencies": {
|
||||
"es6-promise": "^3.3.0",
|
||||
"moment": "^2.8.4",
|
||||
"preact": "^4.5.1",
|
||||
"preact-compat": "^1.7.0",
|
||||
|
@ -1,3 +1,6 @@
|
||||
// Support for Node 0.10
|
||||
// See https://github.com/webpack/css-loader/issues/144
|
||||
require('es6-promise').polyfill();
|
||||
var _ = require('underscore');
|
||||
var path = require('path');
|
||||
var sourcemaps = 'inline-source-map';
|
||||
|
Loading…
Reference in New Issue
Block a user