Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Jun 10, 2024
1 parent 06df12d commit 6a14b7b
Show file tree
Hide file tree
Showing 6 changed files with 177 additions and 173 deletions.
4 changes: 2 additions & 2 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"build": {
"build:ng": {
"dependsOn": [
"^build"
"^build:ng"
]
}
},
Expand Down
89 changes: 45 additions & 44 deletions projects/core/package.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,48 @@
{
"name": "@hug/ngx-core",
"version": "1.1.0",
"description": "",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
"author": "HUG - Hôpitaux Universitaires Genève",
"contributors": [
"badisi (https://github.com/badisi)",
"vapkse (https://github.com/vapkse)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsi-hug/ngx-components.git"
},
"keywords": [
"angular",
"material",
"material design",
"components"
],
"sideEffects": false,
"exports": {
".": {
"sass": "./styles"
"name": "@hug/ngx-core",
"version": "1.1.0",
"description": "",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
"author": "HUG - Hôpitaux Universitaires Genève",
"contributors": [
"badisi (https://github.com/badisi)",
"vapkse (https://github.com/vapkse)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsi-hug/ngx-components.git"
},
"keywords": [
"angular",
"material",
"material design",
"components"
],
"sideEffects": false,
"exports": {
".": {
"sass": "./styles"
}
},
"scripts": {
"lint": "eslint . --fix",
"test": "ng test core",
"test:ci": "ng test core --watch=false --browsers=ChromeHeadless",
"build:ng": "ng build core -c=production",
"build": "nx build:ng @hug/ngx-core",
"release": "nx release -p=@hug/ngx-core",
"release:dry-run": "nx release -p=@hug/ngx-core --dry-run"
},
"peerDependencies": {
"@angular/common": ">= 14",
"@angular/core": ">= 14",
"@angular/cdk": ">= 14",
"@angular/material": ">= 14",
"rxjs": ">= 7.0.0",
"date-fns": "^2.30.0"
},
"dependencies": {
"tslib": "^2.6.2"
}
},
"scripts": {
"lint": "eslint . --fix",
"test": "ng test core",
"test:ci": "ng test core --watch=false --browsers=ChromeHeadless",
"build": "ng build core -c=production",
"release": "nx release -p=@hug/ngx-core",
"release:dry-run": "nx release -p=@hug/ngx-core --dry-run"
},
"peerDependencies": {
"@angular/common": ">= 14",
"@angular/core": ">= 14",
"@angular/cdk": ">= 14",
"@angular/material": ">= 14",
"rxjs": ">= 7.0.0",
"date-fns": "^2.30.0"
},
"dependencies": {
"tslib": "^2.6.2"
}
}
81 changes: 41 additions & 40 deletions projects/list-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,44 @@
{
"name": "@hug/ngx-list-loader",
"version": "1.1.0",
"description": "",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
"author": "HUG - Hôpitaux Universitaires Genève",
"contributors": [
"badisi (https://github.com/badisi)",
"vapkse (https://github.com/vapkse)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsi-hug/ngx-components.git"
},
"keywords": [
"angular",
"material",
"material design",
"components"
],
"sideEffects": false,
"exports": {
".": {
"sass": "./_list-loader-theme.scss"
"name": "@hug/ngx-list-loader",
"version": "1.1.0",
"description": "",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
"author": "HUG - Hôpitaux Universitaires Genève",
"contributors": [
"badisi (https://github.com/badisi)",
"vapkse (https://github.com/vapkse)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsi-hug/ngx-components.git"
},
"keywords": [
"angular",
"material",
"material design",
"components"
],
"sideEffects": false,
"exports": {
".": {
"sass": "./_list-loader-theme.scss"
}
},
"scripts": {
"lint": "eslint . --fix",
"test": "ng test list-loader",
"test:ci": "ng test list-loader --watch=false --browsers=ChromeHeadless",
"build:ng": "ng build list-loader -c=production",
"build": "nx build:ng @hug/ngx-list-loader --verbose",
"release": "nx release -p=@hug/ngx-list-loader",
"release:dry-run": "nx release -p=@hug/ngx-list-loader --dry-run"
},
"peerDependencies": {
"@angular/common": ">= 14",
"@angular/core": ">= 14"
},
"dependencies": {
"tslib": "^2.6.2"
}
},
"scripts": {
"lint": "eslint . --fix",
"test": "ng test list-loader",
"test:ci": "ng test list-loader --watch=false --browsers=ChromeHeadless",
"build": "ng build list-loader -c=production",
"release": "nx release -p=@hug/ngx-list-loader",
"release:dry-run": "nx release -p=@hug/ngx-list-loader --dry-run"
},
"peerDependencies": {
"@angular/common": ">= 14",
"@angular/core": ">= 14"
},
"dependencies": {
"tslib": "^2.6.2"
}
}
85 changes: 43 additions & 42 deletions projects/message-box/package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,46 @@
{
"name": "@hug/ngx-message-box",
"version": "1.1.0",
"description": "",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
"author": "HUG - Hôpitaux Universitaires Genève",
"contributors": [
"badisi (https://github.com/badisi)",
"vapkse (https://github.com/vapkse)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsi-hug/ngx-components.git"
},
"keywords": [
"angular",
"material",
"material design",
"components"
],
"sideEffects": false,
"exports": {
".": {
"sass": "./_message-box-theme.scss"
"name": "@hug/ngx-message-box",
"version": "1.1.0",
"description": "",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
"author": "HUG - Hôpitaux Universitaires Genève",
"contributors": [
"badisi (https://github.com/badisi)",
"vapkse (https://github.com/vapkse)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsi-hug/ngx-components.git"
},
"keywords": [
"angular",
"material",
"material design",
"components"
],
"sideEffects": false,
"exports": {
".": {
"sass": "./_message-box-theme.scss"
}
},
"scripts": {
"lint": "eslint . --fix",
"test": "ng test message-box",
"test:ci": "ng test message-box --watch=false --browsers=ChromeHeadless",
"build:ng": "ng build message-box -c=production",
"build": "nx build:ng @hug/ngx-message-box --verbose",
"release": "nx release -p=@hug/ngx-message-box",
"release:dry-run": "nx release -p=@hug/ngx-message-box --dry-run"
},
"peerDependencies": {
"@angular/common": ">= 14",
"@angular/core": ">= 14",
"@angular/cdk": ">= 14",
"@angular/material": ">= 14"
},
"dependencies": {
"tslib": "^2.6.2"
}
},
"scripts": {
"lint": "eslint . --fix",
"test": "ng test message-box",
"test:ci": "ng test message-box --watch=false --browsers=ChromeHeadless",
"build": "ng build message-box -c=production",
"release": "nx release -p=@hug/ngx-message-box",
"release:dry-run": "nx release -p=@hug/ngx-message-box --dry-run"
},
"peerDependencies": {
"@angular/common": ">= 14",
"@angular/core": ">= 14",
"@angular/cdk": ">= 14",
"@angular/material": ">= 14"
},
"dependencies": {
"tslib": "^2.6.2"
}
}
89 changes: 45 additions & 44 deletions projects/numeric-stepper/package.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,48 @@
{
"name": "@hug/ngx-numeric-stepper",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
"author": "HUG - Hôpitaux Universitaires Genève",
"contributors": [
"badisi (https://github.com/badisi)",
"vapkse (https://github.com/vapkse)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsi-hug/ngx-components.git"
},
"keywords": [
"angular",
"material",
"material design",
"components"
],
"sideEffects": false,
"exports": {
".": {
"sass": "./_numeric-stepper-theme.scss"
"name": "@hug/ngx-numeric-stepper",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
"author": "HUG - Hôpitaux Universitaires Genève",
"contributors": [
"badisi (https://github.com/badisi)",
"vapkse (https://github.com/vapkse)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsi-hug/ngx-components.git"
},
"keywords": [
"angular",
"material",
"material design",
"components"
],
"sideEffects": false,
"exports": {
".": {
"sass": "./_numeric-stepper-theme.scss"
}
},
"scripts": {
"lint": "eslint . --fix",
"test": "ng test numeric-stepper",
"test:ci": "ng test numeric-stepper --watch=false --browsers=ChromeHeadless",
"build:ng": "ng build numeric-stepper -c=production",
"build": "nx build:ng @hug/ngx-numeric-stepper --verbose",
"release": "nx release -p=@hug/ngx-numeric-stepper",
"release:dry-run": "nx release -p=@hug/ngx-numeric-stepper --dry-run"
},
"peerDependencies": {
"@angular/common": ">= 14",
"@angular/core": ">= 14",
"@angular/cdk": ">= 14",
"@angular/material": ">= 14",
"rxjs": ">= 7.0.0",
"@hug/ngx-core": "1.1.0"
},
"dependencies": {
"tslib": "^2.6.2"
}
},
"scripts": {
"lint": "eslint . --fix",
"test": "ng test numeric-stepper",
"test:ci": "ng test numeric-stepper --watch=false --browsers=ChromeHeadless",
"build": "ng build numeric-stepper -c=production",
"release": "nx release -p=@hug/ngx-numeric-stepper",
"release:dry-run": "nx release -p=@hug/ngx-numeric-stepper --dry-run"
},
"peerDependencies": {
"@angular/common": ">= 14",
"@angular/core": ">= 14",
"@angular/cdk": ">= 14",
"@angular/material": ">= 14",
"rxjs": ">= 7.0.0",
"@hug/ngx-core": "1.1.0"
},
"dependencies": {
"tslib": "^2.6.2"
}
}
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
],
"paths": {
"@hug/ngx-core": [
"dist/core/src"
"dist/core"
],
"@hug/ngx-list-loader": [
"dist/list-loader"
Expand Down

0 comments on commit 6a14b7b

Please sign in to comment.