Skip to content

Commit

Permalink
fix: Build set manifest.json version from package.json (#13)
Browse files Browse the repository at this point in the history
* fix: Build set manifest.json version from package.json

* fix: References must point to generator-ui5-app
  • Loading branch information
mauriciolauffer authored Jan 23, 2024
1 parent f098aa0 commit 9503e88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion generators/app/templates/webapp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"title": "{{appTitle}}",
"description": "{{appDescription}}",
"applicationVersion": {
"version": "1.0.0"
"version": "${version}"
}
},

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint:staged": "lint-staged",
"format": "prettier --write .",
"format:staged": "pretty-quick --staged --verbose",
"test": "cd test && yo ../../generator-ui5-ts-app",
"test": "cd test && yo ../../generator-ui5-app",
"prepare": "node ./.husky/skip.js || husky install",
"hooks:pre-commit": "npm-run-all --sequential format:staged lint:staged"
},
Expand All @@ -25,12 +25,12 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ui5-community/generator-ui5-ts-app.git"
"url": "https://github.com/ui5-community/generator-ui5-app.git"
},
"bugs": {
"url": "https://github.com/ui5-community/generator-ui5-ts-app/issues"
"url": "https://github.com/ui5-community/generator-ui5-app/issues"
},
"homepage": "https://github.com/ui5-community/generator-ui5-ts-app#readme",
"homepage": "https://github.com/ui5-community/generator-ui5-app#readme",
"dependencies": {
"chalk": "^5.3.0",
"glob": "^10.3.10",
Expand Down

0 comments on commit 9503e88

Please sign in to comment.