eslint-plugin-sfmc 1.0.1 → 1.0.2

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": "eslint-plugin-sfmc",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "ESLint plugin for Salesforce Marketing Cloud — AMPscript and Server-Side JavaScript (SSJS)",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -32,9 +32,9 @@
32
32
  "sfmc"
33
33
  ],
34
34
  "dependencies": {
35
- "ampscript-data": "^0.1.4",
36
- "ampscript-parser": "^0.1.1",
37
- "ssjs-data": "^0.3.1"
35
+ "ampscript-data": "^0.2.0",
36
+ "ampscript-parser": "^0.1.3",
37
+ "ssjs-data": "^0.4.0"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "eslint": ">=9.0.0"
@@ -62,7 +62,7 @@ export default {
62
62
 
63
63
  create(context) {
64
64
  const coreVars = new Map(); // varName → className (Core Library instances)
65
- const wsproxyVars = new Set(); // varNames assigned new WSProxy()
65
+ const wsproxyVars = new Set(); // varNames assigned new Script.Util.WSProxy()
66
66
 
67
67
  function checkArgs(entry, args, callName) {
68
68
  if (!entry || !entry.params || entry.params.length === 0) {