We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a481e55 commit d8e1341Copy full SHA for d8e1341
package.json
@@ -70,6 +70,7 @@
70
"gl-select-box": "^1.0.1",
71
"gl-spikes2d": "^1.0.1",
72
"gl-surface3d": "^1.2.3",
73
+ "ify-loader": "^1.0.3",
74
"mouse-change": "^1.1.1",
75
"mouse-wheel": "^1.0.2",
76
"ndarray": "^1.0.16",
@@ -108,6 +109,7 @@
108
109
"through2": "^2.0.0",
110
"uglify-js": "^2.6.1",
111
"watchify": "^3.7.0",
112
+ "webpack": "^1.13.0",
113
"xml2js": "^0.4.16"
114
}
115
webpack.config.js
@@ -0,0 +1,18 @@
1
+module.exports = {
2
+ context: __dirname + "/app",
3
+ entry: "./entry",
4
+ output: {
5
+ path: __dirname + "/dist",
6
+ filename: "bundle.js"
7
+ },
8
+ module: {
9
+ loaders: [
10
+ // This applies the loader to all of your dependencies,
11
+ // and not any of the source files in your project:
12
+ {
13
+ test: /node_modules/,
14
+ loader: 'ify'
15
+ }
16
+ ]
17
18
+};
0 commit comments