Parcourir la source

Fix the webpack entry point

Steven Silvester il y a 8 ans
Parent
commit
af412925b0
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      test/webpack-cov.conf.js
  2. 1 1
      test/webpack.conf.js

+ 1 - 1
test/webpack-cov.conf.js

@@ -1,7 +1,7 @@
 var path = require('path');
 
 module.exports = {
-  entry: './test/src/index.ts',
+  entry: './test/build/index.js',
   output: {
     path: __dirname + "/build",
     filename: "coverage.js",

+ 1 - 1
test/webpack.conf.js

@@ -1,7 +1,7 @@
 var path = require('path');
 
 module.exports = {
-  entry: './test/src/index.ts',
+  entry: './test/build/index.js',
   output: {
     path: __dirname + "/build",
     filename: "bundle.js",