forceios 12.2.0 → 13.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forceios",
3
- "version": "12.2.0",
3
+ "version": "13.0.1",
4
4
  "description": "Utilities for creating mobile apps based on the Salesforce Mobile SDK for iOS",
5
5
  "keywords": [ "mobilesdk", "ios", "salesforce", "mobile", "sdk" ],
6
6
  "homepage": "https://github.com/forcedotcom/SalesforceMobileSDK-iOS",
@@ -28,7 +28,7 @@
28
28
  var path = require('path'),
29
29
  shelljs = require('shelljs');
30
30
 
31
- var VERSION= '12.2.0';
31
+ var VERSION= '13.0.1';
32
32
 
33
33
  module.exports = {
34
34
  version: VERSION,
@@ -118,11 +118,10 @@ module.exports = {
118
118
  dir: 'hybrid',
119
119
  platforms: ['ios', 'android'],
120
120
  toolNames: ['git', 'node', 'npm', 'cordova', 'sf'],
121
- appTypes: ['hybrid_local', 'hybrid_remote', 'hybrid_lwc'],
121
+ appTypes: ['hybrid_local', 'hybrid_remote'],
122
122
  appTypesToPath: {
123
123
  'hybrid_local': 'HybridLocalTemplate',
124
- 'hybrid_remote': 'HybridRemoteTemplate',
125
- 'hybrid_lwc': 'HybridLwcTemplate'
124
+ 'hybrid_remote': 'HybridRemoteTemplate'
126
125
  },
127
126
  commands: ['create', 'createwithtemplate', 'version', 'listtemplates', 'checkconfig']
128
127
  },