Skip to content

Commit 22968d2

Browse files
authored
(release): 48.0.0 (#1043)
* (release): 48.0.0
1 parent 5682cab commit 22968d2

File tree

5 files changed

+38
-4
lines changed

5 files changed

+38
-4
lines changed

angular.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,26 @@
111111
}
112112
}
113113
},
114+
"@swimlane/ngx-ui-testing": {
115+
"root": "",
116+
"sourceRoot": "projects/swimlane/ngx-ui-testing/src",
117+
"projectType": "library",
118+
"prefix": "ngx",
119+
"architect": {
120+
"build": {
121+
"builder": "@angular-devkit/build-angular:ng-packagr",
122+
"options": {
123+
"tsConfig": "projects/swimlane/ngx-ui-testing/tsconfig.json",
124+
"project": "projects/swimlane/ngx-ui-testing/ng-package.json"
125+
},
126+
"configurations": {
127+
"production": {
128+
"tsConfig": "projects/swimlane/ngx-ui-testing/tsconfig.json"
129+
}
130+
}
131+
}
132+
}
133+
},
114134
"@swimlane/ngx-ui": {
115135
"root": "projects/swimlane/ngx-ui",
116136
"sourceRoot": "projects/swimlane/ngx-ui/src",

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
"start": "ng serve --port 4200",
99
"prestart-prod": "npm run build:lib",
1010
"start-prod": "ng serve --configuration production --port 4200",
11-
"build": "npm run build:lib && ng build --configuration production",
11+
"build": "npm run build:lib && ng build ngx-ui --configuration production",
1212
"build:demo": "cross-env NODE_ENV=production ng build --configuration production --statsJson=true",
1313
"build:deploy": "cross-env NODE_ENV=production ng build --configuration production --base-href=\"/ngx-ui/\"",
1414
"build:lib": "ng build @swimlane/ngx-ui --configuration production && npm run build:css",
15+
"build:testing-lib": "ng build @swimlane/ngx-ui-testing --configuration production",
1516
"build:css": "node scripts/prep-global-styles.js && npm run copy-files",
1617
"build:schematics": "tsc -p ./projects/swimlane/ngx-ui-schematics/tsconfig.json",
1718
"build:schematics:dev": "tsc -p ./projects/swimlane/ngx-ui-schematics/tsconfig.json --watch",
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
3+
"dest": "../../../dist/swimlane/ngx-ui-testing",
4+
"lib": {
5+
"entryFile": "src/index.ts"
6+
}
7+
}

projects/swimlane/ngx-ui-testing/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "@swimlane/ngx-ui-testing",
33
"version": "43.0.0",
44
"description": "",
5-
"main": "dist/index.js",
6-
"types": "dist/index.d.ts",
7-
"typings": "dist/index.d.ts",
5+
"main": "esm2022/index.mjs",
6+
"types": "esm2022/index.d.ts",
7+
"typings": "esm2022/index.d.ts",
88
"scripts": {
99
"test": "echo \"Error: no test specified\" && exit 1",
1010
"prepare": "tsc"

projects/swimlane/ngx-ui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

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

7+
## 48.0.0 (2023-06-17)
8+
9+
- Breaking: Angular 18 support
10+
- Breaking: ngx-ui-testing package `iff` method may behave differently given `within` call is move internally
11+
- Enhancement (`ngx-radiobutton`): Added `toggle` method to align with ngx-checkbox and ngx-toggle
12+
713
## 47.0.0 (2023-02-12)
814

915
- Breaking: Angular 17 support

0 commit comments

Comments
 (0)