File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
projects/js-toolkit/packages/liferay-cli/src/new Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,7 @@ const facet: LiferayTargetFacet = {
1818 async prompt ( useDefaults : boolean , options : Options ) : Promise < Options > {
1919 return await prompt ( useDefaults , options , [
2020 {
21- type : 'confirm' ,
22- name : 'createInitializer' ,
21+ default : false ,
2322 message :
2423 'Does your shared bundle need an initializer?\n' +
2524 '\n' +
@@ -28,7 +27,8 @@ const facet: LiferayTargetFacet = {
2827 ' 💡 It may also be useful if you need to load any polyfill that must be\n' +
2928 ' loaded just once.\n' +
3029 '\n' ,
31- default : false ,
30+ name : 'createInitializer' ,
31+ type : 'confirm' ,
3232 } ,
3333 ] ) ;
3434 } ,
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ import facetPortlet from '../facet-portlet';
2121import facetProject from '../facet-project' ;
2222import facetReact from '../facet-react' ;
2323import facetSampleConfiguration from '../facet-sample-configuration' ;
24- import facetSharedBundle from '../facet-shared-bundle' ;
2524import facetSampleStyles from '../facet-sample-styles' ;
25+ import facetSharedBundle from '../facet-shared-bundle' ;
2626import facetVuejs from '../facet-vuejs' ;
2727
2828import type { Facet , Options , Target } from '..' ;
You can’t perform that action at this time.
0 commit comments