sf-plugin-permission-sets 0.0.0-dev.8 → 0.0.0-dev.9

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 (3) hide show
  1. package/oclif.lock +209 -671
  2. package/oclif.manifest.json +1 -1
  3. package/package.json +139 -181
@@ -47,5 +47,5 @@
47
47
  ]
48
48
  }
49
49
  },
50
- "version": "0.0.0-dev.8"
50
+ "version": "0.0.0-dev.9"
51
51
  }
package/package.json CHANGED
@@ -1,191 +1,149 @@
1
1
  {
2
- "name": "sf-plugin-permission-sets",
3
- "description": "",
4
- "version": "0.0.0-dev.8",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://github.com/zaclummys/sf-plugin-permission-sets.git"
8
- },
9
- "dependencies": {
10
- "@oclif/core": "^4",
11
- "@salesforce/core": "^8",
12
- "@salesforce/sf-plugins-core": "^12"
13
- },
14
- "devDependencies": {
15
- "@oclif/plugin-command-snapshot": "^5.1.9",
16
- "@salesforce/cli-plugins-testkit": "^5.3.10",
17
- "@salesforce/dev-scripts": "^10",
18
- "eslint-plugin-sf-plugin": "^1.18.6",
19
- "husky": "^7.0.4",
20
- "oclif": "^4.14.0",
21
- "ts-node": "^10.9.2",
22
- "typescript": "^5.4.5"
23
- },
24
- "engines": {
25
- "node": ">=18.0.0"
26
- },
27
- "files": [
28
- "/lib",
29
- "/messages",
30
- "/oclif.manifest.json",
31
- "/oclif.lock"
32
- ],
33
- "keywords": [
34
- "force",
35
- "salesforce",
36
- "salesforcedx",
37
- "sf",
38
- "sf-plugin",
39
- "sfdx",
40
- "sfdx-plugin"
41
- ],
42
- "license": "BSD-3-Clause",
43
- "oclif": {
44
- "commands": "./lib/commands",
45
- "bin": "sf",
46
- "topicSeparator": " ",
47
- "devPlugins": [
48
- "@oclif/plugin-help"
49
- ],
50
- "topics": {
51
- "ps": {
52
- "description": "Manage permission set assignments declaratively."
53
- }
54
- },
55
- "flexibleTaxonomy": true
56
- },
57
- "scripts": {
58
- "build": "wireit",
59
- "clean": "sf-clean",
60
- "clean-all": "sf-clean all",
61
- "compile": "wireit",
62
- "docs": "sf-docs",
63
- "format": "wireit",
64
- "link-check": "wireit",
65
- "lint": "wireit",
66
- "prepare": "husky install",
67
- "postpack": "sf-clean --ignore-signing-artifacts",
68
- "prepack": "sf-prepack",
69
- "test": "wireit",
70
- "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
71
- "test:only": "wireit",
72
- "version": "oclif readme"
73
- },
74
- "publishConfig": {
75
- "access": "public"
76
- },
77
- "wireit": {
78
- "build": {
79
- "dependencies": [
80
- "compile",
81
- "lint"
82
- ]
83
- },
84
- "compile": {
85
- "command": "tsc -p . --pretty --incremental",
86
- "files": [
87
- "src/**/*.ts",
88
- "**/tsconfig.json",
89
- "messages/**"
90
- ],
91
- "output": [
92
- "lib/**",
93
- "*.tsbuildinfo"
94
- ],
95
- "clean": "if-file-deleted"
2
+ "name": "sf-plugin-permission-sets",
3
+ "description": "",
4
+ "version": "0.0.0-dev.9",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/zaclummys/sf-plugin-permission-sets.git"
96
8
  },
97
- "format": {
98
- "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
99
- "files": [
100
- "src/**/*.ts",
101
- "test/**/*.ts",
102
- "schemas/**/*.json",
103
- "command-snapshot.json",
104
- ".prettier*"
105
- ],
106
- "output": []
9
+ "dependencies": {
10
+ "@oclif/core": "^4",
11
+ "@salesforce/core": "^8",
12
+ "@salesforce/sf-plugins-core": "^12"
107
13
  },
108
- "lint": {
109
- "command": "eslint src test --color --cache --cache-location .eslintcache",
110
- "files": [
111
- "src/**/*.ts",
112
- "test/**/*.ts",
113
- "messages/**",
114
- "**/.eslint*",
115
- "**/tsconfig.json"
116
- ],
117
- "output": []
14
+ "devDependencies": {
15
+ "@salesforce/dev-scripts": "^10",
16
+ "eslint-plugin-sf-plugin": "^1.18.6",
17
+ "husky": "^7.0.4",
18
+ "oclif": "^4.14.0",
19
+ "ts-node": "^10.9.2",
20
+ "typescript": "^5.4.5"
118
21
  },
119
- "test:compile": {
120
- "command": "tsc -p \"./test\" --pretty",
121
- "files": [
122
- "test/**/*.ts",
123
- "**/tsconfig.json"
124
- ],
125
- "output": []
22
+ "engines": {
23
+ "node": ">=18.0.0"
126
24
  },
127
- "test": {
128
- "dependencies": [
129
- "test:compile",
130
- "test:only",
131
- "lint"
132
- ]
133
- },
134
- "test:only": {
135
- "command": "nyc mocha \"test/**/*.test.ts\"",
136
- "env": {
137
- "FORCE_COLOR": "2"
138
- },
139
- "files": [
140
- "test/**/*.ts",
141
- "src/**/*.ts",
142
- "**/tsconfig.json",
143
- ".mocha*",
144
- "!*.nut.ts",
145
- ".nycrc"
146
- ],
147
- "output": []
25
+ "files": [
26
+ "/lib",
27
+ "/messages",
28
+ "/oclif.manifest.json",
29
+ "/oclif.lock"
30
+ ],
31
+ "keywords": [
32
+ "force",
33
+ "salesforce",
34
+ "salesforcedx",
35
+ "sf",
36
+ "sf-plugin",
37
+ "sfdx",
38
+ "sfdx-plugin"
39
+ ],
40
+ "license": "BSD-3-Clause",
41
+ "oclif": {
42
+ "commands": "./lib/commands",
43
+ "bin": "sf",
44
+ "topicSeparator": " ",
45
+ "devPlugins": [
46
+ "@oclif/plugin-help"
47
+ ],
48
+ "topics": {
49
+ "ps": {
50
+ "description": "Manage permission set assignments declaratively."
51
+ }
52
+ },
53
+ "flexibleTaxonomy": true
148
54
  },
149
- "test:command-reference": {
150
- "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
151
- "files": [
152
- "src/**/*.ts",
153
- "messages/**",
154
- "package.json"
155
- ],
156
- "output": [
157
- "tmp/root"
158
- ]
55
+ "scripts": {
56
+ "build": "wireit",
57
+ "clean": "sf-clean",
58
+ "clean-all": "sf-clean all",
59
+ "compile": "wireit",
60
+ "docs": "sf-docs",
61
+ "format": "wireit",
62
+ "lint": "wireit",
63
+ "prepare": "husky install",
64
+ "postpack": "sf-clean --ignore-signing-artifacts",
65
+ "prepack": "sf-prepack",
66
+ "test": "wireit",
67
+ "test:only": "wireit",
68
+ "version": "oclif readme"
159
69
  },
160
- "test:deprecation-policy": {
161
- "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
162
- "files": [
163
- "src/**/*.ts"
164
- ],
165
- "output": [],
166
- "dependencies": [
167
- "compile"
168
- ]
70
+ "publishConfig": {
71
+ "access": "public"
169
72
  },
170
- "test:json-schema": {
171
- "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
172
- "files": [
173
- "src/**/*.ts",
174
- "schemas"
175
- ],
176
- "output": []
73
+ "wireit": {
74
+ "build": {
75
+ "dependencies": [
76
+ "compile",
77
+ "lint"
78
+ ]
79
+ },
80
+ "compile": {
81
+ "command": "tsc -p . --pretty --incremental",
82
+ "files": [
83
+ "src/**/*.ts",
84
+ "**/tsconfig.json",
85
+ "messages/**"
86
+ ],
87
+ "output": [
88
+ "lib/**",
89
+ "*.tsbuildinfo"
90
+ ],
91
+ "clean": "if-file-deleted"
92
+ },
93
+ "format": {
94
+ "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
95
+ "files": [
96
+ "src/**/*.ts",
97
+ "test/**/*.ts",
98
+ "schemas/**/*.json",
99
+ "command-snapshot.json",
100
+ ".prettier*"
101
+ ],
102
+ "output": []
103
+ },
104
+ "lint": {
105
+ "command": "eslint src test --color --cache --cache-location .eslintcache",
106
+ "files": [
107
+ "src/**/*.ts",
108
+ "test/**/*.ts",
109
+ "messages/**",
110
+ "**/.eslint*",
111
+ "**/tsconfig.json"
112
+ ],
113
+ "output": []
114
+ },
115
+ "test:compile": {
116
+ "command": "tsc -p \"./test\" --pretty",
117
+ "files": [
118
+ "test/**/*.ts",
119
+ "**/tsconfig.json"
120
+ ],
121
+ "output": []
122
+ },
123
+ "test": {
124
+ "dependencies": [
125
+ "test:compile",
126
+ "test:only",
127
+ "lint"
128
+ ]
129
+ },
130
+ "test:only": {
131
+ "command": "nyc mocha \"test/**/*.test.ts\"",
132
+ "env": {
133
+ "FORCE_COLOR": "2"
134
+ },
135
+ "files": [
136
+ "test/**/*.ts",
137
+ "src/**/*.ts",
138
+ "**/tsconfig.json",
139
+ ".mocha*",
140
+ "!*.nut.ts",
141
+ ".nycrc"
142
+ ],
143
+ "output": []
144
+ }
177
145
  },
178
- "link-check": {
179
- "command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
180
- "files": [
181
- "./*.md",
182
- "./!(CHANGELOG).md",
183
- "messages/**/*.md"
184
- ],
185
- "output": []
186
- }
187
- },
188
- "exports": "./lib/index.js",
189
- "type": "module",
190
- "author": "Isaac Ferreira"
146
+ "exports": "./lib/index.js",
147
+ "type": "module",
148
+ "author": "Isaac Ferreira"
191
149
  }