Added local test file
This commit is contained in:
parent
7dc7c0ca69
commit
a48c528498
|
@ -5,7 +5,8 @@
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"zuul-test": "zuul --local -- test/test.js"
|
"zuul-test": "zuul --local -- test/test.js",
|
||||||
|
"build-test": "tsc && browserify test/test.js > test/bundle.js"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
|
@ -16,6 +17,7 @@
|
||||||
"zuul": "^3.12.0"
|
"zuul": "^3.12.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^12.0.0"
|
"@types/node": "^12.0.0",
|
||||||
|
"browserify": "^16.5.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Test chunk store</title>
|
||||||
|
<script src="./bundle.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue