File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
src/generators/application Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 71
71
"publish" : {
72
72
"executor" : " ngx-deploy-npm:deploy" ,
73
73
"options" : {
74
- "access" : " public" ,
75
- "distFolderPath" : " packages/qwik-nx"
74
+ "access" : " public"
76
75
}
77
76
},
78
77
"push-to-github" : {
Original file line number Diff line number Diff line change @@ -6,7 +6,14 @@ import { QwikAppGeneratorSchema } from './schema';
6
6
7
7
describe ( 'qwik-nx generator' , ( ) => {
8
8
let appTree : Tree ;
9
- const options : QwikAppGeneratorSchema = { name : 'test' } ;
9
+ const options : QwikAppGeneratorSchema = {
10
+ name : 'test' ,
11
+ style : 'css' ,
12
+ linter : 'none' ,
13
+ skipFormat : false ,
14
+ unitTestRunner : 'none' ,
15
+ strict : false
16
+ } ;
10
17
11
18
beforeEach ( ( ) => {
12
19
appTree = createTreeWithEmptyWorkspace ( ) ;
You can’t perform that action at this time.
0 commit comments