Supporting multri entry
This commit is contained in:
3
test/multi-entry/fixtures/app/admin-deps.js
Normal file
3
test/multi-entry/fixtures/app/admin-deps.js
Normal file
@@ -0,0 +1,3 @@
|
||||
export function adminDeps(){
|
||||
return "robin!";
|
||||
}
|
||||
6
test/multi-entry/fixtures/app/app.js
Normal file
6
test/multi-entry/fixtures/app/app.js
Normal file
@@ -0,0 +1,6 @@
|
||||
export const bootstrap = (el,deps = [])=>{
|
||||
el.innerHtml = `
|
||||
<div>I'm "annoying" ${"in case we need to test \`string\` escaping."}. Hence this file \'tries\' to include all allowed forms of 'it'</div>
|
||||
<div>Deps: ${deps}</div>
|
||||
`;
|
||||
}
|
||||
Reference in New Issue
Block a user