mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(build): update build scripts
This commit is contained in:
@@ -1,12 +1,19 @@
|
||||
# @ionic/angular
|
||||
|
||||
Ionic Angular specific building blocks on top of [@ionic/core](https://www.npmjs.com/package/@ionic/core) components/services.
|
||||
Ionic Angular specific building blocks on top of [@ionic/core](https://www.npmjs.com/package/@ionic/core) components.
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
* [Ionic Components](https://www.npmjs.com/package/@ionic/core)
|
||||
* [Ionicons](http://ionicons.com/)
|
||||
* [Ionic Core Components](https://www.npmjs.com/package/@ionic/core)
|
||||
* [Ionic Documentation](https://ionicframework.com/docs/)
|
||||
* [Ionic Worldwide Slack](http://ionicworldwide.herokuapp.com/)
|
||||
* [Ionic Forum](https://forum.ionicframework.com/)
|
||||
* [Ionicons](http://ionicons.com/)
|
||||
* [Stencil](https://stenciljs.com/)
|
||||
* [Stencil Worldwide Slack](https://stencil-worldwide.slack.com)
|
||||
|
||||
|
||||
## License
|
||||
|
||||
* [MIT](https://raw.githubusercontent.com/ionic-team/ionic/master/LICENSE)
|
||||
|
||||
@@ -5,10 +5,11 @@
|
||||
"keywords": [
|
||||
"ionic",
|
||||
"framework",
|
||||
"angular",
|
||||
"mobile",
|
||||
"app",
|
||||
"hybrid",
|
||||
"webapp",
|
||||
"capacitor",
|
||||
"cordova",
|
||||
"progressive web app",
|
||||
"pwa"
|
||||
@@ -20,7 +21,6 @@
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run clean && npm run compile && npm run clean-generated",
|
||||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
||||
"clean": "node scripts/clean.js",
|
||||
"clean-generated": "node ./scripts/clean-generated.js",
|
||||
"compile": "./node_modules/.bin/ngc",
|
||||
@@ -47,7 +47,6 @@
|
||||
"@angular/router": "latest",
|
||||
"@ionic/core": "^0.1.3",
|
||||
"chalk": "^2.3.2",
|
||||
"conventional-changelog-cli": "^1.3.16",
|
||||
"execa": "^0.9.0",
|
||||
"fs-extra": "^5.0.0",
|
||||
"glob": "7.1.2",
|
||||
|
||||
6
packages/angular/scripts/deploy.js
vendored
6
packages/angular/scripts/deploy.js
vendored
@@ -149,10 +149,6 @@ function runTasks(opts) {
|
||||
{
|
||||
title: 'Set package.json version',
|
||||
task: () => execa('npm', ['run', 'set.version', opts.version], { cwd: rootDir }),
|
||||
},
|
||||
{
|
||||
title: 'Generate CHANGELOG',
|
||||
task: () => execa('npm', ['run', 'changelog'], { cwd: rootDir }),
|
||||
}
|
||||
);
|
||||
}
|
||||
@@ -165,7 +161,7 @@ function runTasks(opts) {
|
||||
},
|
||||
{
|
||||
title: 'Tagging the latest commit',
|
||||
task: () => execa('git', ['tag', `v${opts.version}`], { cwd: rootDir })
|
||||
task: () => execa('git', ['tag', `${pkg.name}-v${opts.version}`], { cwd: rootDir })
|
||||
},
|
||||
{
|
||||
title: 'Pushing to Github',
|
||||
|
||||
Reference in New Issue
Block a user