Skip to content

Commit

Permalink
fix: fix npm publish dist
Browse files Browse the repository at this point in the history
dist folder in npm publish was pointing to the wrong folder
  • Loading branch information
shairez committed Dec 7, 2022
1 parent d6d3e9a commit 758ca4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 1 addition & 2 deletions packages/qwik-nx/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@
"publish": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public",
"distFolderPath": "packages/qwik-nx"
"access": "public"
}
},
"push-to-github": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ import { QwikAppGeneratorSchema } from './schema';

describe('qwik-nx generator', () => {
let appTree: Tree;
const options: QwikAppGeneratorSchema = { name: 'test' };
const options: QwikAppGeneratorSchema = {
name: 'test',
style: 'css',
linter: 'none',
skipFormat: false,
unitTestRunner: 'none',
strict: false
};

beforeEach(() => {
appTree = createTreeWithEmptyWorkspace();
Expand Down

0 comments on commit 758ca4a

Please sign in to comment.