Skip to content

Commit 5836064

Browse files
committed
chore: update remaining depds and fix e2e tests
1 parent 4e6b7df commit 5836064

File tree

5 files changed

+1258
-814
lines changed

5 files changed

+1258
-814
lines changed

e2e/prod.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ <h1>This is for e2e testing</h1>
3333
function mountApp(path) {
3434
fetch(`/dist/${path}/manifest.json`).then(d => d.json()).then(manifest => {
3535
const head = document.head;
36-
manifest.wpackioEp.main.js.forEach(js => {
36+
manifest.wpackioEp.main.assets.js.forEach(js => {
3737
const script = document.createElement('script');
3838
script.setAttribute('src', `/dist/${js}`);
3939
script.setAttribute('type', 'text/javascript');
4040
head.appendChild(script);
4141
});
42-
manifest.wpackioEp.main.css.forEach(css => {
42+
manifest.wpackioEp.main.assets.css.forEach(css => {
4343
const link = document.createElement('link');
4444
link.setAttribute('rel', 'stylesheet');
4545
link.setAttribute('href', `/dist/${css}`);

0 commit comments

Comments
 (0)