not-node 5.0.5 → 5.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/not-builder.js +5 -5
- package/package.json +1 -1
package/bin/not-builder.js
CHANGED
|
@@ -261,7 +261,7 @@ async function loadNPMModule(){
|
|
|
261
261
|
}
|
|
262
262
|
opts.verbose && console.log('result', result);
|
|
263
263
|
}else{
|
|
264
|
-
|
|
264
|
+
opts.verbose && console.info('...no templates');
|
|
265
265
|
}
|
|
266
266
|
if(mod.paths.styles){
|
|
267
267
|
let commons;
|
|
@@ -278,7 +278,7 @@ async function loadNPMModule(){
|
|
|
278
278
|
}
|
|
279
279
|
opts.verbose && console.log('result', result);
|
|
280
280
|
}else{
|
|
281
|
-
|
|
281
|
+
opts.verbose && console.info('...no styles');
|
|
282
282
|
}
|
|
283
283
|
}
|
|
284
284
|
}catch(e){
|
|
@@ -314,7 +314,7 @@ async function loadServerModule(){
|
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
}else{
|
|
317
|
-
|
|
317
|
+
opts.verbose && console.info('...no controllers');
|
|
318
318
|
}
|
|
319
319
|
if(mod.paths.templates){
|
|
320
320
|
let commons;
|
|
@@ -339,7 +339,7 @@ async function loadServerModule(){
|
|
|
339
339
|
|
|
340
340
|
}
|
|
341
341
|
}else{
|
|
342
|
-
|
|
342
|
+
opts.verbose && console.info('...no templates');
|
|
343
343
|
}
|
|
344
344
|
if(mod.paths.styles){
|
|
345
345
|
let commons;
|
|
@@ -364,7 +364,7 @@ async function loadServerModule(){
|
|
|
364
364
|
|
|
365
365
|
}
|
|
366
366
|
}else{
|
|
367
|
-
|
|
367
|
+
opts.verbose && console.info('...no styles');
|
|
368
368
|
}
|
|
369
369
|
}
|
|
370
370
|
}catch(e){
|