Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/ci_release.yml
#	package-lock.json
#	package.json
  • Loading branch information
vapkse committed Jul 8, 2024
2 parents 45e6361 + 8e067f5 commit bc08191
Show file tree
Hide file tree
Showing 24 changed files with 396 additions and 281 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
required: true
type: choice
options:
- -- all --
- core
- layout
- list-loader
Expand Down Expand Up @@ -43,6 +44,6 @@ jobs:
GH_TOKEN: ${{ secrets.DSI_HUG_BOT_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.DSI_HUG_NPM_TOKEN }}
with:
working-directory: 'projects/${{ inputs.package }}'
working-directory: ${{ (inputs.package == '-- all --') && '.' || format('projects/{0}', inputs.package) }}
dry-run: ${{ inputs.dry-run }}
release: true
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Make sure to use the official npm registry
registry=https://registry.npmjs.org/
86 changes: 18 additions & 68 deletions package-lock.json

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
"private": true,
"scripts": {
"ncu": "npx npm-check-updates -i --target=minor --dep=dev,peer,optional,prod --format=group --packageFile='{,projects/**/}package.json'",
"lint": "eslint . --fix",
"prepare": "husky || true",
"new-package": "ng g .:new-package",
"release:dry-run": "node -r @swc-node/register ./scripts/release.ts --verbose --dry-run",
"lint": "nx run-many -t lint",
"test:ci": "nx run-many -t test:ci",
"build": "nx run-many -t build:ng --verbose",
"release": "node -r @swc-node/register ./scripts/release.ts --verbose",
"release:dry-run": "npm run release -- --dry-run",
"postinstall": "patch-package",
"start": "ng serve",
"prettier": "npx prettier . --write"
Expand Down Expand Up @@ -39,10 +42,10 @@
"@angular/platform-browser": "~14.3.0",
"@angular/platform-browser-dynamic": "~14.3.0",
"@angular/router": "~14.3.0",
"date-fns": "~2.30.0",
"@fontsource-variable/material-symbols-outlined": "~5.0.19",
"@fontsource/material-icons": "4.5.4",
"@fontsource/roboto": "4.5.8",
"date-fns": "~2.30.0",
"lodash-es": "~4.17.21",
"rxjs": "~7.8.1",
"tslib": "~2.6.3",
Expand Down Expand Up @@ -103,7 +106,7 @@
}
},
"lint-staged": {
"**/*.{js,ts}": [
"**/*.{js,json,ts,html}": [
"eslint --fix"
],
"**/*.{html,scss,json}": [
Expand Down
17 changes: 17 additions & 0 deletions projects/layout/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 1.1.3 (2024-07-08)

### 🐛 Fixes

- theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e))

### 🌱 Dependencies

- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9))

- **@hug/ngx-sidenav:** upgrade to v1.1.2 ([92ee575](https://github.com/DSI-HUG/ngx-components/commit/92ee575))

### ❤️ Thank You

- dsi-hug-bot @dsi-hug-bot
- Serge

## 1.1.0 (2024-06-26)

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion projects/layout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@angular/cdk": ">= 14",
"@angular/material": ">= 14",
"@hug/ngx-core": "1.1.7",
"@hug/ngx-sidenav": "1.1.1"
"@hug/ngx-sidenav": "1.1.2"
},
"dependencies": {
"tslib": "^2.6.3"
Expand Down
10 changes: 10 additions & 0 deletions projects/list-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.1.3 (2024-07-08)

### 🐛 Fixes

- theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e))

### ❤️ Thank You

- Serge

## 1.1.1 (2024-06-17)

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion projects/list-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hug/ngx-list-loader",
"version": "1.1.2",
"version": "1.1.3",
"description": "HUG Angular - list loader component",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
Expand Down
10 changes: 10 additions & 0 deletions projects/numeric-stepper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.1.4 (2024-07-08)

### 🌱 Dependencies

- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9))

### ❤️ Thank You

- dsi-hug-bot @dsi-hug-bot

## 1.1.2 (2024-06-24)

### 🌱 Dependencies
Expand Down
2 changes: 1 addition & 1 deletion projects/numeric-stepper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hug/ngx-numeric-stepper",
"version": "1.1.3",
"version": "1.1.4",
"description": "HUG Angular - numeric stepper component",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
Expand Down
15 changes: 15 additions & 0 deletions projects/sidenav/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 1.1.2 (2024-07-08)

### 🐛 Fixes

- theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e))

### 🌱 Dependencies

- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9))

### ❤️ Thank You

- dsi-hug-bot @dsi-hug-bot
- Serge

## 1.1.0 (2024-06-26)

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion projects/sidenav/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hug/ngx-sidenav",
"version": "1.1.1",
"version": "1.1.2",
"description": "HUG Angular - sidenav component",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
Expand Down
10 changes: 10 additions & 0 deletions projects/snackbar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.1.3 (2024-07-08)

### 🌱 Dependencies

- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9))

### ❤️ Thank You

- dsi-hug-bot @dsi-hug-bot

## 1.1.1 (2024-06-24)

### 🌱 Dependencies
Expand Down
2 changes: 1 addition & 1 deletion projects/snackbar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hug/ngx-snackbar",
"version": "1.1.2",
"version": "1.1.3",
"description": "HUG Angular - snackbar component",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
Expand Down
12 changes: 12 additions & 0 deletions projects/status/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 1.1.2 (2024-07-08)

### 🌱 Dependencies

- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9))

- **@hug/ngx-snackbar:** upgrade to v1.1.3 ([20a211c](https://github.com/DSI-HUG/ngx-components/commit/20a211c))

### ❤️ Thank You

- dsi-hug-bot @dsi-hug-bot

## 1.1.0 (2024-06-24)

### 🚀 Features
Expand Down
4 changes: 2 additions & 2 deletions projects/status/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hug/ngx-status",
"version": "1.1.1",
"version": "1.1.2",
"description": "HUG Angular - status component",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
Expand Down Expand Up @@ -41,7 +41,7 @@
"@angular/material": ">= 14",
"rxjs": ">= 7.0.0",
"@hug/ngx-core": "1.1.7",
"@hug/ngx-snackbar": "1.1.2",
"@hug/ngx-snackbar": "1.1.3",
"@hug/ngx-message-box": "1.1.2"
},
"dependencies": {
Expand Down
12 changes: 12 additions & 0 deletions projects/time-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 1.1.3 (2024-07-08)

### 🌱 Dependencies

- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9))

- **@hug/ngx-numeric-stepper:** upgrade to v1.1.4 ([197b1ad](https://github.com/DSI-HUG/ngx-components/commit/197b1ad))

### ❤️ Thank You

- dsi-hug-bot @dsi-hug-bot

## 1.1.1 (2024-06-24)

### 🌱 Dependencies
Expand Down
4 changes: 2 additions & 2 deletions projects/time-picker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hug/ngx-time-picker",
"version": "1.1.2",
"version": "1.1.3",
"description": "HUG Angular - time picker component",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
Expand Down Expand Up @@ -38,7 +38,7 @@
"rxjs": ">= 7.0.0",
"date-fns": "^2.30.0",
"@hug/ngx-core": "1.1.7",
"@hug/ngx-numeric-stepper": "1.1.3"
"@hug/ngx-numeric-stepper": "1.1.4"
},
"dependencies": {
"tslib": "^2.6.3"
Expand Down
10 changes: 10 additions & 0 deletions projects/tooltip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.1.3 (2024-07-08)

### 🌱 Dependencies

- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9))

### ❤️ Thank You

- dsi-hug-bot @dsi-hug-bot

## 1.1.1 (2024-06-24)

### 🐛 Fixes
Expand Down
2 changes: 1 addition & 1 deletion projects/tooltip/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hug/ngx-tooltip",
"version": "1.1.2",
"version": "1.1.3",
"description": "HUG Angular - tooltip component",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
Expand Down
10 changes: 10 additions & 0 deletions projects/user-card/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.1.2 (2024-07-08)

### 🐛 Fixes

- theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e))

### ❤️ Thank You

- Serge

## 1.1.0 (2024-06-26)

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion projects/user-card/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hug/ngx-user-card",
"version": "1.1.1",
"version": "1.1.2",
"description": "HUG Angular - user-card component",
"homepage": "https://github.com/dsi-hug/ngx-components",
"license": "GPL-3.0-only",
Expand Down
4 changes: 2 additions & 2 deletions projects/user-tooltip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"@angular/core": ">= 14",
"@angular/material": ">= 14",
"@hug/ngx-core": "1.1.7",
"@hug/ngx-tooltip": "1.1.2",
"@hug/ngx-user-card": "1.1.1"
"@hug/ngx-tooltip": "1.1.3",
"@hug/ngx-user-card": "1.1.2"
},
"dependencies": {
"tslib": "^2.6.3"
Expand Down
Loading

0 comments on commit bc08191

Please sign in to comment.