Skip to content

Commit 758ca4a

Browse files
committed
fix: fix npm publish dist
dist folder in npm publish was pointing to the wrong folder
1 parent d6d3e9a commit 758ca4a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

packages/qwik-nx/project.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@
7171
"publish": {
7272
"executor": "ngx-deploy-npm:deploy",
7373
"options": {
74-
"access": "public",
75-
"distFolderPath": "packages/qwik-nx"
74+
"access": "public"
7675
}
7776
},
7877
"push-to-github": {

packages/qwik-nx/src/generators/application/generator.spec.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ import { QwikAppGeneratorSchema } from './schema';
66

77
describe('qwik-nx generator', () => {
88
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+
};
1017

1118
beforeEach(() => {
1219
appTree = createTreeWithEmptyWorkspace();

0 commit comments

Comments
 (0)