Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.

Commit 1f6c1bc

Browse files
committed
chore: Update build configuration
1 parent c46301a commit 1f6c1bc

File tree

8 files changed

+31
-25
lines changed

8 files changed

+31
-25
lines changed

package.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@
33
"version": "1.0.0",
44
"description": "",
55
"author": "Romain Lenzotti",
6+
"repository": "https://github.com/TypedProject/tsed-api",
67
"private": true,
78
"scripts": {
9+
"configure": "monorepo ci configure",
810
"test": "lerna run test --stream",
911
"test:e2e": "lerna run test:e2e",
10-
"test:front": "lerna run test --scope=@tsed/backoffice --scope=@tsed/shared",
11-
"test:backoffice": "lerna run test --scope=@tsed/backoffice",
12-
"test:server": "lerna run test --scope=@tsed/server",
12+
"test:front": "lerna run test --scope=@tsed/backoffice --scope=@tsed/shared --stream",
13+
"test:backoffice": "lerna run test --scope=@tsed/backoffice --stream",
14+
"test:server": "lerna run test --scope=@tsed/server --stream",
1315
"lint": "lerna run lint",
1416
"lint:fix": "lerna run lint:fix",
1517
"prettier": "lerna run prettier:fix",
16-
"build": "lerna run build --stream",
18+
"build": "monorepo build",
1719
"build:backoffice": "lerna run build --scope=@tsed/backoffice --stream",
1820
"build:server": "lerna run build --scope=@tsed/server --stream",
1921
"start": "lerna run start --stream --parallel",
@@ -25,10 +27,10 @@
2527
"release": "semantic-release"
2628
},
2729
"dependencies": {
28-
"@tsed/react-formio": "^1.8.6",
29-
"@tsed/react-formio-container": "^1.8.6",
30-
"@tsed/redux-utils": "^1.8.6",
31-
"@tsed/tailwind-formio": "^1.8.6",
30+
"@tsed/react-formio": "^1.8.7",
31+
"@tsed/react-formio-container": "^1.8.7",
32+
"@tsed/redux-utils": "^1.8.7",
33+
"@tsed/tailwind-formio": "^1.8.7",
3234
"classnames": "2.2.6",
3335
"connected-react-router": "6.8.0",
3436
"file-saver": "2.0.5",

packages/config/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"description": "Shared configuration",
77
"author": "Romain Lenzotti",
88
"license": "MIT",
9+
"private": true,
910
"scripts": {},
1011
"dependencies": {
1112
},

packages/server/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
"version": "1.0.0",
44
"description": "Server based on Ts.ED framework",
55
"author": "Romain Lenzotti",
6+
"private": true,
67
"scripts": {
78
"build": "yarn tsc",
89
"tsc": "tsc --project tsconfig.compile.json",
910
"tsc:w": "tsc --project tsconfig.json -w",
1011
"start": "tsnd --inspect --ignore-watch node_modules --respawn --transpile-only -r tsconfig-paths/register src/index.ts",
1112
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
1213
"test": "yarn test:lint && yarn test:coverage",
13-
"test:unit": "cross-env NODE_ENV=test CI=1 jest",
14+
"test:unit": "cross-env NODE_ENV=test CI=1 jest --detectOpenHandles --coverage",
1415
"test:coverage": "yarn test:unit",
1516
"test:lint": "yarn eslint src --ext .ts",
1617
"test:lint:fix": "yarn eslint src --ext .ts --fix",

packages/server/src/controllers/rest/github/GithubCtrl.integration.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe("GithubCtrl", () => {
1717
beforeAll(() => {
1818
request = SuperTest(PlatformTest.callback());
1919
});
20-
afterAll(() => PlatformTest.reset());
20+
afterAll(() => TestMongooseContext.reset());
2121

2222
describe("get()", () => {
2323
it("should get project information", async () => {

packages/server/src/controllers/rest/opencollective/OpenCollectiveCtrl.integration.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe("OpenCollectiveCtrl", () => {
1919
beforeAll(() => {
2020
request = SuperTest(PlatformTest.callback());
2121
});
22-
afterAll(() => PlatformTest.reset());
22+
afterAll(() => TestMongooseContext.reset());
2323

2424
describe("get()", () => {
2525
it("should get project information", async () => {

packages/shared/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"description": "Shared components",
88
"author": "Romain Lenzotti",
99
"license": "MIT",
10+
"private": true,
1011
"scripts": {
1112
"test": "cross-env CI=1 yarn craco test --coverage",
1213
"lint:fix": "yarn lint --fix",

packages/tailwind/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"main": "./tailwind.config.js",
55
"description": "Tailwind configuration",
66
"license": "MIT",
7+
"private": true,
78
"scripts": {
89
"postinstall": "yarn build:tailwind",
910
"build:tailwind": "tailwindcss-cli build -o build/tailwind.css",

yarn.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4931,7 +4931,7 @@
49314931
express "^4.17.1"
49324932
multer "^1.4.2"
49334933

4934-
"@tsed/react-formio-container@^1.8.6":
4934+
"@tsed/react-formio-container@^1.8.7":
49354935
version "1.8.7"
49364936
resolved "https://registry.yarnpkg.com/@tsed/react-formio-container/-/react-formio-container-1.8.7.tgz#8024d4e64e695f84fd560a424c26b9d44924817e"
49374937
integrity sha512-0myc5v1K4euhaO6mhpJS81aPKH4zkuYNrrIO5sGhGoMhm0WSEOJHQPsBmSmeLBPaDScFYT8H2NaVCZAMwFdw7g==
@@ -4945,12 +4945,12 @@
49454945
eventemitter2 "^6.4.3"
49464946
prop-types "^15.7.2"
49474947

4948-
"@tsed/react-formio@^1.8.6":
4949-
version "1.8.6"
4950-
resolved "https://registry.yarnpkg.com/@tsed/react-formio/-/react-formio-1.8.6.tgz#8c6abe616eddcfe6de6610c96773d8661cffed3a"
4951-
integrity sha512-oMx7/rIjRjlSEyW4cEDig7itbLY7Hs8py7nunEO5umGcS3GMetrYj/Na7N1LnDt3w56v9uiyK5ATJZj2UrZx6w==
4948+
"@tsed/react-formio@^1.8.7":
4949+
version "1.8.7"
4950+
resolved "https://registry.yarnpkg.com/@tsed/react-formio/-/react-formio-1.8.7.tgz#c9f6f398ba9ca492f4376a7ea92615ab4a3c28d6"
4951+
integrity sha512-0dvCE61ECp3abHyw0IdNhbIqqtnTdTqup268q/gBS7VHuHCAn8LWHv4GHCdIQWFPfPtpxOlYb3MU9itemgCNRg==
49524952
dependencies:
4953-
"@tsed/redux-utils" "1.8.6"
4953+
"@tsed/redux-utils" "1.8.7"
49544954
eventemitter2 "^6.4.3"
49554955
prop-types "^15.7.2"
49564956

@@ -4959,10 +4959,10 @@
49594959
resolved "https://registry.yarnpkg.com/@tsed/redux-utils/-/redux-utils-1.1.0.tgz#750f66d6d9556c44d97e2f82b7b9b53459c831ea"
49604960
integrity sha512-B+pb69HTLDSdyqgK1ZX4q5BVXAYtDcY5hpWmvYHO3AUz2hGXaodmr1QaEATh901X77avwi1/URANCk0eV0nRmQ==
49614961

4962-
"@tsed/redux-utils@1.8.6", "@tsed/redux-utils@^1.8.6":
4963-
version "1.8.6"
4964-
resolved "https://registry.yarnpkg.com/@tsed/redux-utils/-/redux-utils-1.8.6.tgz#55c8aa794ffb0e62fe70b8d9855f089f74cfae28"
4965-
integrity sha512-SwYihXb2ATtu4jOE2DZUkX9fhVpJJChpACK/Q+mjpo/iwsoXiJ0VIcLtIEQiFcZwpmfsqTHwI84eXgXWDm9FHQ==
4962+
"@tsed/redux-utils@1.8.7", "@tsed/redux-utils@^1.8.7":
4963+
version "1.8.7"
4964+
resolved "https://registry.yarnpkg.com/@tsed/redux-utils/-/redux-utils-1.8.7.tgz#ee4111c08d40ea8570b6e27e21c910eb7e2ef63f"
4965+
integrity sha512-foEJG5+b1hM10MX1MFOhqyW5i0BE0N6pfWk/zC8DpHMC2oZ9SSf5P2hRKIJmSUn3LZkj3vFTdsqMdyGux7FDPg==
49664966

49674967
"@tsed/schema@6.26.4":
49684968
version "6.26.4"
@@ -4988,10 +4988,10 @@
49884988
resolved "https://registry.yarnpkg.com/@tsed/tailwind-formio/-/tailwind-formio-1.1.0.tgz#50e2f785ea76e16a25e75d865597d7b89e02357f"
49894989
integrity sha512-82K9ZyNU4sjSSzk7HXlV8AofU6pUS2/DtoQITu+1EeGI2lyVlpvqq76IsOH+gXF2kcGXktBafTtJdAZpkeB+SQ==
49904990

4991-
"@tsed/tailwind-formio@^1.8.6":
4992-
version "1.8.6"
4993-
resolved "https://registry.yarnpkg.com/@tsed/tailwind-formio/-/tailwind-formio-1.8.6.tgz#bf3334685de0b244fa3774b9fcf9fc4eaa95faa1"
4994-
integrity sha512-9huq1HEgBl6aanWTkm08hopkdkPlG0PKWT1xuONJFQmqK/qLyl9fLPQe2H6+ls//Gt+5MiUWPh9aDiqvezuQOA==
4991+
"@tsed/tailwind-formio@^1.8.7":
4992+
version "1.8.7"
4993+
resolved "https://registry.yarnpkg.com/@tsed/tailwind-formio/-/tailwind-formio-1.8.7.tgz#e34b4bed1cfff300baac51c335e1404fe2165841"
4994+
integrity sha512-epe4kAkUqEM0oYaNETFeIRNqlqnK9PdxpPWkYrWdFJTmcd1Qw+dOfVIfXHY6QaR5wm9MQH7M2WpQKfE49P/o1w==
49954995

49964996
"@tsed/testing-mongoose@6.26.4":
49974997
version "6.26.4"

0 commit comments

Comments
 (0)