We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a86654b commit 17a0669Copy full SHA for 17a0669
packages/cli/bin/index.js
@@ -0,0 +1,2 @@
1
+#! /usr/bin/env node
2
+import '../src/index.js';
packages/cli/package.json
@@ -39,7 +39,7 @@
39
},
40
"type": "module",
41
"bin": {
42
- "code-pushup": "./src/index.js"
+ "code-pushup": "./bin/index.js"
43
44
"engines": {
45
"node": ">=20"
packages/cli/project.json
@@ -4,7 +4,11 @@
4
"sourceRoot": "packages/cli/src",
5
"projectType": "library",
6
"targets": {
7
- "build": {},
+ "build": {
8
+ "options": {
9
+ "assets": ["{projectRoot}/*.md", "{projectRoot}/bin/*"]
10
+ }
11
+ },
12
"lint": {},
13
"unit-test": {},
14
"int-test": {},
0 commit comments