Skip to content

Commit 686d584

Browse files
committed
chore: remove -T from scripts to allow standalone build
1 parent 41d530d commit 686d584

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

packages/blueprints-integration/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
"homepage": "https://github.com/Sofie-Automation/sofie-core/blob/main/packages/blueprints-integration#readme",
1717
"scripts": {
1818
"prepare": "yarn build",
19-
"build": "run -T rimraf dist && run build:main",
20-
"build:main": "run -T tsc -p tsconfig.build.json",
21-
"lint:raw": "run -T eslint",
22-
"lint": "run lint:raw .",
23-
"unit": "run -T jest",
24-
"test": "run lint && run unit",
25-
"watch": "run -T jest --watch",
26-
"cov": "run -T jest --coverage; open-cli coverage/lcov-report/index.html",
19+
"build": "rimraf dist && yarn build:main",
20+
"build:main": "tsc -p tsconfig.build.json",
21+
"lint:raw": "eslint",
22+
"lint": "yarn lint:raw .",
23+
"unit": "jest",
24+
"test": "yarn lint && yarn unit",
25+
"watch": "jest --watch",
26+
"cov": "jest --coverage; open-cli coverage/lcov-report/index.html",
2727
"cov-open": "open-cli coverage/lcov-report/index.html",
28-
"validate:dependencies": "yarn npm audit --environment production && run license-validate",
28+
"validate:dependencies": "yarn npm audit --environment production && yarn license-validate",
2929
"validate:dev-dependencies": "yarn npm audit --environment development",
30-
"license-validate": "run -T sofie-licensecheck"
30+
"license-validate": "sofie-licensecheck"
3131
},
3232
"engines": {
3333
"node": ">=22.20.0"

packages/shared-lib/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
"homepage": "https://github.com/nrkno/sofie-core/blob/master/packages/shared-lib#readme",
1717
"scripts": {
1818
"prepare": "yarn build",
19-
"build": "run -T rimraf dist && run build:main",
20-
"build:main": "run -T tsc -p tsconfig.build.json",
21-
"lint:raw": "run -T eslint",
22-
"lint": "run lint:raw .",
23-
"unit": "run -T jest",
24-
"test": "run lint && run unit",
25-
"watch": "run -T jest --watch",
26-
"cov": "run -T jest --coverage; open-cli coverage/lcov-report/index.html",
19+
"build": "rimraf dist && yarn build:main",
20+
"build:main": "tsc -p tsconfig.build.json",
21+
"lint:raw": "eslint",
22+
"lint": "yarn lint:raw .",
23+
"unit": "jest",
24+
"test": "yarn lint && yarn unit",
25+
"watch": "jest --watch",
26+
"cov": "jest --coverage; open-cli coverage/lcov-report/index.html",
2727
"cov-open": "open-cli coverage/lcov-report/index.html",
28-
"validate:dependencies": "yarn npm audit --environment production && run license-validate",
28+
"validate:dependencies": "yarn npm audit --environment production && yarn license-validate",
2929
"validate:dev-dependencies": "yarn npm audit --environment development",
30-
"license-validate": "run -T sofie-licensecheck"
30+
"license-validate": "sofie-licensecheck"
3131
},
3232
"engines": {
3333
"node": ">=22.20.0"

0 commit comments

Comments
 (0)