@salesforce/plugin-sobject 0.1.4 → 0.1.6

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.
Files changed (2) hide show
  1. package/oclif.manifest.json +1 -1
  2. package/package.json +29 -22
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.4",
2
+ "version": "0.1.6",
3
3
  "commands": {
4
4
  "schema:generate:field": {
5
5
  "id": "schema:generate:field",
package/package.json CHANGED
@@ -1,37 +1,37 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-sobject",
3
3
  "description": "Create objects, fields, tabs, etc",
4
- "version": "0.1.4",
4
+ "version": "0.1.6",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
8
  "@oclif/core": "^2.1.4",
9
9
  "@salesforce/core": "^3.33.1",
10
10
  "@salesforce/kit": "^1.8.5",
11
- "@salesforce/sf-plugins-core": "^2.1.2",
11
+ "@salesforce/sf-plugins-core": "^2.2.3",
12
12
  "change-case": "^4.1.2",
13
13
  "fast-glob": "^3.2.12",
14
- "fast-xml-parser": "^4.0.13",
14
+ "fast-xml-parser": "^4.1.2",
15
15
  "inquirer": "^8.2.5",
16
16
  "js2xmlparser": "^4.0.2",
17
17
  "tslib": "^2"
18
18
  },
19
19
  "devDependencies": {
20
- "@oclif/plugin-command-snapshot": "^3.3.3",
21
- "@oclif/test": "^2.2.20",
22
- "@salesforce/cli-plugins-testkit": "^3.2.20",
20
+ "@oclif/plugin-command-snapshot": "^3.3.6",
21
+ "@oclif/test": "^2.3.6",
22
+ "@salesforce/cli-plugins-testkit": "^3.2.21",
23
23
  "@salesforce/dev-config": "^3.1.0",
24
- "@salesforce/dev-scripts": "^4.0.0-beta.9",
25
- "@salesforce/plugin-command-reference": "^2.2.10",
24
+ "@salesforce/dev-scripts": "^4.1.1",
25
+ "@salesforce/plugin-command-reference": "^2.3.1",
26
26
  "@salesforce/prettier-config": "^0.0.2",
27
- "@salesforce/ts-sinon": "1.4.3",
27
+ "@salesforce/ts-sinon": "1.4.6",
28
28
  "@swc/core": "^1.3.30",
29
29
  "@types/inquirer": "^8.2.0",
30
30
  "@types/shelljs": "^0.8.11",
31
31
  "@typescript-eslint/eslint-plugin": "^5.49.0",
32
32
  "@typescript-eslint/parser": "^5.50.0",
33
33
  "chai": "^4.3.7",
34
- "eslint": "^8.33.0",
34
+ "eslint": "^8.34.0",
35
35
  "eslint-config-prettier": "^8.6.0",
36
36
  "eslint-config-salesforce": "^1.1.1",
37
37
  "eslint-config-salesforce-license": "^0.2.0",
@@ -51,7 +51,7 @@
51
51
  "sinon": "10.0.0",
52
52
  "ts-node": "^10.9.1",
53
53
  "typescript": "^4.9.5",
54
- "wireit": "^0.9.3"
54
+ "wireit": "^0.9.5"
55
55
  },
56
56
  "config": {},
57
57
  "engines": {
@@ -109,10 +109,6 @@
109
109
  "prepack": "sf-prepack",
110
110
  "prepare": "sf-install",
111
111
  "test": "wireit",
112
- "test:command-reference": "wireit",
113
- "test:compile": "wireit",
114
- "test:deprecation-policy": "wireit",
115
- "test:json-schema": "wireit",
116
112
  "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
117
113
  "test:only": "wireit",
118
114
  "version": "oclif readme"
@@ -141,7 +137,15 @@
141
137
  "clean": "if-file-deleted"
142
138
  },
143
139
  "format": {
144
- "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\""
140
+ "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
141
+ "files": [
142
+ "src/**/*.ts",
143
+ "test/**/*.ts",
144
+ "schemas/**/*.json",
145
+ "command-snapshot.json",
146
+ ".prettier*"
147
+ ],
148
+ "output": []
145
149
  },
146
150
  "lint": {
147
151
  "command": "eslint src test --color --cache --cache-location .eslintcache",
@@ -149,8 +153,7 @@
149
153
  "src/**/*.ts",
150
154
  "test/**/*.ts",
151
155
  "messages/**",
152
- ".eslintignore",
153
- ".eslintrc.js"
156
+ ".eslint*"
154
157
  ],
155
158
  "output": []
156
159
  },
@@ -179,7 +182,10 @@
179
182
  "test/**/*.ts",
180
183
  "src/**/*.ts",
181
184
  "tsconfig.json",
182
- "test/tsconfig.json"
185
+ ".mocha*",
186
+ "test/tsconfig.json",
187
+ "!*.nut.ts",
188
+ ".nycrc"
183
189
  ],
184
190
  "output": []
185
191
  },
@@ -187,7 +193,8 @@
187
193
  "command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
188
194
  "files": [
189
195
  "src/**/*.ts",
190
- "messages/**"
196
+ "messages/**",
197
+ "package.json"
191
198
  ],
192
199
  "output": [
193
200
  "tmp/root"
@@ -213,7 +220,7 @@
213
220
  }
214
221
  },
215
222
  "sfdx": {
216
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-sobject/0.1.4.crt",
217
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-sobject/0.1.4.sig"
223
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-sobject/0.1.6.crt",
224
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-sobject/0.1.6.sig"
218
225
  }
219
226
  }