Compare commits

..
4 Commits
Author SHA1 Message Date
Daniel Sogl a9774e07ae 5.21.5 2020-02-12 09:27:31 +01:00
Daniel Sogl 6016568c86 chore(package): compile with angular 9 2020-02-12 09:27:12 +01:00
Mike Hartington 95d402c7f5 5.21.4 2020-02-10 23:56:39 -05:00
Mike Hartington df5f832664 fix(build): corrects npm publishing task
Ref #3311
2020-02-10 23:50:46 -05:00
4 changed files with 3960 additions and 3758 deletions
+13
View File
@@ -1,3 +1,16 @@
## [5.21.5](https://github.com/ionic-team/ionic-native/compare/v5.21.4...v5.21.5) (2020-02-12)
## [5.21.4](https://github.com/ionic-team/ionic-native/compare/v5.21.3...v5.21.4) (2020-02-11)
### Bug Fixes
* **build:** corrects npm publishing task ([df5f832](https://github.com/ionic-team/ionic-native/commit/df5f8326643b209e68446159e79fc2528d2d3a80)), closes [#3311](https://github.com/ionic-team/ionic-native/issues/3311)
## [5.21.3](https://github.com/ionic-team/ionic-native/compare/v5.21.2...v5.21.3) (2020-02-10)
+3931 -3745
View File
File diff suppressed because it is too large Load Diff
+11 -11
View File
@@ -1,6 +1,6 @@
{
"name": "ionic-native",
"version": "5.21.3",
"version": "5.21.5",
"description": "Native plugin wrappers for Cordova and Ionic with TypeScript, ES6+, Promise and Observable support",
"homepage": "https://ionicframework.com/",
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -22,15 +22,15 @@
"shipit": "npm run build && npm run readmes && npm run npmpub"
},
"devDependencies": {
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/compiler-cli": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/common": "~9.0.0",
"@angular/compiler": "~9.0.0",
"@angular/compiler-cli": "~9.0.0",
"@angular/core": "~9.0.0",
"@types/cordova": "0.0.34",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.26",
"@types/node": "^12.12.27",
"@types/rimraf": "^2.0.3",
"@types/webpack": "^4.41.6",
"ajv": "^6.11.0",
@@ -49,19 +49,19 @@
"minimist": "1.2.0",
"natives": "^1.1.6",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"rxjs": "~6.5.4",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint": "~5.18.0",
"tslint-ionic-rules": "0.0.21",
"typedoc": "^0.16.9",
"typescript": "~3.5.3",
"typescript": "~3.7.5",
"typescript-tslint-plugin": "0.5.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.41.5",
"webpack": "^4.41.6",
"winston": "^3.2.1",
"zone.js": "^0.9.1"
"zone.js": "~0.10.2"
},
"jest": {
"transform": {
+5 -2
View File
@@ -52,7 +52,10 @@ function writePackageJson(data: any, dir: string) {
fs.writeJSONSync(filePath, data);
PACKAGES.push(dir);
}
function writeNGXPackageJson(data: any, dir: string){
const filePath = path.resolve(dir, 'package.json');
fs.writeJSONSync(filePath, data);
}
function prepare() {
// write @ionic-native/core package.json
writePackageJson(
@@ -67,7 +70,7 @@ function prepare() {
const dir = path.resolve(DIST, 'plugins', pluginName);
const ngxDir = path.join(dir, 'ngx');
writePackageJson(packageJsonContents, dir);
writePackageJson(packageJsonContents, ngxDir);
writeNGXPackageJson(packageJsonContents, ngxDir);
});
}