Skip to content

Commit

Permalink
(release): 48.0.0 (#1043)
Browse files Browse the repository at this point in the history
* (release): 48.0.0
  • Loading branch information
steveblue authored Jun 17, 2024
1 parent 5682cab commit 22968d2
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 4 deletions.
20 changes: 20 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,26 @@
}
}
},
"@swimlane/ngx-ui-testing": {
"root": "",
"sourceRoot": "projects/swimlane/ngx-ui-testing/src",
"projectType": "library",
"prefix": "ngx",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/swimlane/ngx-ui-testing/tsconfig.json",
"project": "projects/swimlane/ngx-ui-testing/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/swimlane/ngx-ui-testing/tsconfig.json"
}
}
}
}
},
"@swimlane/ngx-ui": {
"root": "projects/swimlane/ngx-ui",
"sourceRoot": "projects/swimlane/ngx-ui/src",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
"start": "ng serve --port 4200",
"prestart-prod": "npm run build:lib",
"start-prod": "ng serve --configuration production --port 4200",
"build": "npm run build:lib && ng build --configuration production",
"build": "npm run build:lib && ng build ngx-ui --configuration production",
"build:demo": "cross-env NODE_ENV=production ng build --configuration production --statsJson=true",
"build:deploy": "cross-env NODE_ENV=production ng build --configuration production --base-href=\"/ngx-ui/\"",
"build:lib": "ng build @swimlane/ngx-ui --configuration production && npm run build:css",
"build:testing-lib": "ng build @swimlane/ngx-ui-testing --configuration production",
"build:css": "node scripts/prep-global-styles.js && npm run copy-files",
"build:schematics": "tsc -p ./projects/swimlane/ngx-ui-schematics/tsconfig.json",
"build:schematics:dev": "tsc -p ./projects/swimlane/ngx-ui-schematics/tsconfig.json --watch",
Expand Down
7 changes: 7 additions & 0 deletions projects/swimlane/ngx-ui-testing/ng-package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../../dist/swimlane/ngx-ui-testing",
"lib": {
"entryFile": "src/index.ts"
}
}
6 changes: 3 additions & 3 deletions projects/swimlane/ngx-ui-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "@swimlane/ngx-ui-testing",
"version": "43.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"main": "esm2022/index.mjs",
"types": "esm2022/index.d.ts",
"typings": "esm2022/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc"
Expand Down
6 changes: 6 additions & 0 deletions projects/swimlane/ngx-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

- Enhancement(`ngx-calendar`): Supports selecting a range of dates with hours and minutes

## 48.0.0 (2023-06-17)

- Breaking: Angular 18 support
- Breaking: ngx-ui-testing package `iff` method may behave differently given `within` call is move internally
- Enhancement (`ngx-radiobutton`): Added `toggle` method to align with ngx-checkbox and ngx-toggle

## 47.0.0 (2023-02-12)

- Breaking: Angular 17 support
Expand Down

0 comments on commit 22968d2

Please sign in to comment.