Skip to content

Commit b82e705

Browse files
committed
Removed console log
1 parent d49ef9d commit b82e705

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.meteor/versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ akryum:vue@1.0.3
44
akryum:vue-apollo@0.0.6
55
akryum:vue-app@0.0.1
66
akryum:vue-coffee@0.0.2
7-
akryum:vue-component@0.6.1
7+
akryum:vue-component@0.6.2
88
akryum:vue-component-dev-client@0.0.6
99
akryum:vue-component-dev-server@0.0.1
1010
akryum:vue-i18n@0.0.3

packages/vue-component/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'akryum:vue-component',
3-
version: '0.6.1',
3+
version: '0.6.2',
44
summary: 'VueJS single-file components that hot-reloads',
55
git: 'https://github.com/Akryum/meteor-vue-component',
66
documentation: 'README.md'

packages/vue-component/plugin/vue-compiler.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,10 @@ VueComponentCompiler = class VueComponentCompiler extends CachingCompiler {
8181
const contents = normalizeCarriageReturns(inputFile.getContentsAsString());
8282
const lines = contents.split('\n');
8383
let dirname = getFullDirname(inputFile);
84-
console.log(`dirname:'${dirname}'`);
8584
if(dirname === '.') {
8685
dirname = '';
8786
}
8887
for(let line of lines) {
89-
console.log(`line:'${line}'`);
9088
if(line !== '') {
9189
this.ignoreRules.push({
9290
dirname,

0 commit comments

Comments
 (0)