Skip to content

Commit 08b49c1

Browse files
committed
fix: do not set obsolete id parameter
fixes #211
1 parent 29b160a commit 08b49c1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

create/templates/app-parameters.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const indent = require('../utils/indent');
22
const templateIf = require('../utils/template-if');
33

44
module.exports = (options) => {
5-
const { type, framework, pkg, name, bundler, theming } = options;
5+
const { type, framework, name, bundler, theming } = options;
66

77
const hasCordova = type.indexOf('cordova') >= 0;
88
const hasCapacitor = type.indexOf('capacitor') >= 0;
@@ -27,9 +27,6 @@ module.exports = (options) => {
2727
${templateIf(framework === 'core' && bundler, () => `
2828
component: App, // App main component
2929
`)}
30-
${templateIf(pkg, () => `
31-
id: '${pkg}', // App bundle ID
32-
`)}
3330
// App store
3431
store: store,
3532
// App routes

0 commit comments

Comments
 (0)