Skip to content

Commit 28ef04f

Browse files
committedNov 17, 2023
chore: remove comments and console.log
1 parent 429abcc commit 28ef04f

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed
 

‎js/src/VueWithCompiler.js

-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
// import { addCompiler } from '@mariobuikhuizen/vue-compiler-addon';
2-
// import { * as Vue } from 'vue';
31
export * from 'vue';
4-
// addCompiler(Vue);
5-
6-
// export Vue;

‎js/src/esmVueTemplate.js

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ init();
7373

7474
async function loadShim() {
7575
if (document.querySelectorAll("script[src*=es-module-shims][type=module]").length || document.getElementById("es-module-shims")) {
76-
console.log("shim was already loadedLoaded");
7776
return;
7877
}
7978
return loadScript("module", toModuleUrl(esModuleShims), "es-module-shims")

‎js/webpack.config.js

-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ module.exports = [
5757
},
5858
resolve: {
5959
alias: {
60-
// './VueWithCompiler$': path.resolve(__dirname, 'src/nodepsVueWithCompiler.js')
6160
vue$: 'vue/dist/vue.esm-bundler.js',
6261
},
6362
},
@@ -80,7 +79,6 @@ module.exports = [
8079
},
8180
resolve: {
8281
alias: {
83-
// './VueWithCompiler$': path.resolve(__dirname, 'src/nodepsVueWithCompiler.js')
8482
vue$: 'vue/dist/vue.esm-bundler.js',
8583
},
8684
},

0 commit comments

Comments
 (0)
Please sign in to comment.