build(): add lerna for dev builds (#24358)

This commit is contained in:
Liam DeBeasi
2021-12-10 17:17:53 -05:00
committed by GitHub
parent 4ff3477532
commit 179cbd334b
19 changed files with 46883 additions and 4180 deletions

View File

@ -16,7 +16,7 @@
"@angular/core": "8.2.13",
"@angular/platform-browser": "8.2.13",
"@angular/platform-server": "8.2.13",
"@ionic/core": "5.9.1",
"@ionic/core": "5.9.2",
"ng-packagr": "5.7.1",
"tslint": "^5.12.1",
"tslint-ionic-rules": "0.0.21",
@ -26,7 +26,7 @@
"peerDependencies": {
"@angular/core": ">=8.2.7",
"@angular/platform-server": ">=8.2.7",
"@ionic/angular": "*",
"@ionic/angular": "^5.9.2",
"rxjs": ">=6.2.0",
"zone.js": ">=0.8.26"
}
@ -137,9 +137,9 @@
}
},
"node_modules/@ionic/core": {
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.1.tgz",
"integrity": "sha512-/jVO0N5ESs/iPFcrFZ/JFvW2Uh0ZV1uLFT2vtbtMfCaOMZK8Bmt36ZR1cDDFTuw14vPOLz/1wI2pbQru48JpkQ==",
"version": "5.9.2",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.2.tgz",
"integrity": "sha512-1ZqSBS8R6tGQsc+LsLxIRv0q3Ww6jwgJXLvdn6FmVWfpPbBvT+CjCuU9hqJ5qwM+atErblUMYSexvvpws8lGAA==",
"dev": true,
"dependencies": {
"@stencil/core": "^2.4.0",
@ -5424,9 +5424,9 @@
}
},
"@ionic/core": {
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.1.tgz",
"integrity": "sha512-/jVO0N5ESs/iPFcrFZ/JFvW2Uh0ZV1uLFT2vtbtMfCaOMZK8Bmt36ZR1cDDFTuw14vPOLz/1wI2pbQru48JpkQ==",
"version": "5.9.2",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.9.2.tgz",
"integrity": "sha512-1ZqSBS8R6tGQsc+LsLxIRv0q3Ww6jwgJXLvdn6FmVWfpPbBvT+CjCuU9hqJ5qwM+atErblUMYSexvvpws8lGAA==",
"dev": true,
"requires": {
"@stencil/core": "^2.4.0",

View File

@ -21,6 +21,7 @@
},
"homepage": "https://ionicframework.com/",
"scripts": {
"prepublishOnly": "npm run build.prod",
"test": "echo 'angular no tests yet'",
"build": "ng-packagr -p package.json",
"build.prod": "npm run clean && npm run build",
@ -37,7 +38,7 @@
"peerDependencies": {
"@angular/core": ">=8.2.7",
"@angular/platform-server": ">=8.2.7",
"@ionic/angular": "*",
"@ionic/angular": "^5.9.2",
"rxjs": ">=6.2.0",
"zone.js": ">=0.8.26"
},