浏览代码

Fix the webpack entry point

Steven Silvester 8 年之前
父节点
当前提交
af412925b0
共有 2 个文件被更改,包括 2 次插入2 次删除
  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",