Skip to content

Commit

Permalink
Fix packaging of the Go CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
pepicrft committed Aug 15, 2022
1 parent 8e4a552 commit bc6c464
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ui-extensions-go-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"start": "cd packages/dev-console-app; yarn start",
"test": "yarn --cwd ../.. nx run ui-extensions-go-cli:test",
"test:nx": "node bin/test.js",
"package": "node bin/package.js",
"package": "yarn --cwd ../.. nx run ui-extensions-go-cli:package",
"package:nx": "node bin/package.js",
"lint": "gofmt -s .",
"lint:fix": "gofmt -w -s ."
},
Expand Down
7 changes: 7 additions & 0 deletions packages/ui-extensions-go-cli/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
"options": {
"script": "test:nx"
}
},
"package": {
"executor": "nx:run-script",
"dependsOn": ["^build"],
"options": {
"script": "package:nx"
}
}
}
}

0 comments on commit bc6c464

Please sign in to comment.