Kaynağa Gözat

Fix the webpack entry point

Steven Silvester 8 yıl önce
ebeveyn
işleme
af412925b0
2 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  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",