Skip to content

Commit 308ac7a

Browse files
committed
Preparing V1
1 parent 3a845a2 commit 308ac7a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
run: yarn install
2323

2424
- name: Run TypeScript checks
25-
run: yarn tsc
25+
run: yarn tsc:full
2626

2727
- name: Lint the code
28-
run: yarn lint
28+
run: yarn lint:all
2929

3030
- name: Run tests
3131
run: yarn test

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@
1616
"packages/*"
1717
],
1818
"scripts": {
19-
"build": "lerna run build",
19+
"tsc:full": "tsc --skipLibCheck true --incremental false",
2020
"lint": "backstage-cli repo lint",
21+
"prettier:check": "npx --yes prettier --check .",
2122
"lint:all": "yarn lint && yarn prettier:check",
2223
"test": "CI=true lerna --scope '@hpatoio/*' run test",
23-
"prettier:check": "npx --yes prettier --check .",
24+
"build": "lerna run build",
25+
"publish:npm": "lerna publish",
2426
"prettier:fix": "npx --yes prettier --write .",
25-
"tsc:full": "tsc --skipLibCheck true --incremental false",
2627
"prepare": "husky",
2728
"clean": "backstage-cli repo clean"
2829
},

packages/backstage-plugin-language-info-card/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
"clean": "backstage-cli package clean",
2626
"prepack": "backstage-cli package prepack",
2727
"postpack": "backstage-cli package postpack",
28-
"tsc": "tsc",
29-
"publish-to-npm": "npm publish"
28+
"tsc": "tsc"
3029
},
3130
"dependencies": {
3231
"@backstage/core-components": "^0.16.4",

0 commit comments

Comments
 (0)