rflib-plugin 0.2.0 → 0.3.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.
@@ -43,11 +43,17 @@
43
43
  },
44
44
  "prettier": {
45
45
  "char": "p",
46
- "description": "When enabled, formats the modified Apex files using prettier-plugin-apex after adding logging statements. Maintains consistent code style.",
46
+ "description": "When enabled, formats the modified Apex files using prettier-plugin-apex after adding logging statements. Maintains consistent code style with:\n\n- 120 character line width\n- 4 space indentation\n- Single quotes for strings\n- No tabs",
47
47
  "name": "prettier",
48
48
  "summary": "Format modified files using Prettier.",
49
49
  "allowNo": false,
50
50
  "type": "boolean"
51
+ },
52
+ "no-if": {
53
+ "name": "no-if",
54
+ "summary": "Exclude the instrumentation of if-else statements.",
55
+ "allowNo": false,
56
+ "type": "boolean"
51
57
  }
52
58
  },
53
59
  "hasDynamicHelp": false,
@@ -144,6 +150,12 @@
144
150
  "summary": "Format modified files using Prettier.",
145
151
  "allowNo": false,
146
152
  "type": "boolean"
153
+ },
154
+ "no-if": {
155
+ "name": "no-if",
156
+ "summary": "Exclude the instrumentation of if-else statements.",
157
+ "allowNo": false,
158
+ "type": "boolean"
147
159
  }
148
160
  },
149
161
  "hasDynamicHelp": false,
@@ -240,6 +252,12 @@
240
252
  "summary": "Format modified files using Prettier.",
241
253
  "allowNo": false,
242
254
  "type": "boolean"
255
+ },
256
+ "no-if": {
257
+ "name": "no-if",
258
+ "summary": "Exclude the instrumentation of if-else statements.",
259
+ "allowNo": false,
260
+ "type": "boolean"
243
261
  }
244
262
  },
245
263
  "hasDynamicHelp": false,
@@ -289,5 +307,5 @@
289
307
  ]
290
308
  }
291
309
  },
292
- "version": "0.2.0"
310
+ "version": "0.3.1"
293
311
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rflib-plugin",
3
3
  "description": "Utility commands to help with the adoption of the RFLIB open-source library for Salesforce.",
4
- "version": "0.2.0",
4
+ "version": "0.3.1",
5
5
  "dependencies": {
6
6
  "@oclif/core": "^4",
7
7
  "@salesforce/core": "^8",
@@ -16,9 +16,9 @@
16
16
  "@salesforce/dev-scripts": "^10",
17
17
  "eslint-plugin-sf-plugin": "^1.18.6",
18
18
  "husky": "^8.0.0",
19
- "oclif": "^4.17.4",
19
+ "oclif": "^4.17.10",
20
20
  "ts-node": "^10.9.2",
21
- "typescript": "^5.4.5"
21
+ "typescript": "^5.7.3"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=18.0.0"