sf-plugin-permission-sets 0.0.0-dev → 0.0.0-dev.11

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.
@@ -1,4 +1,51 @@
1
1
  {
2
- "commands": {},
3
- "version": "0.0.0-dev"
2
+ "commands": {
3
+ "ps:info": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Print the plugin name and what it does. A quick way to confirm the plugin is installed and working.",
7
+ "examples": [
8
+ "Show plugin info:\n<%= config.bin %> <%= command.id %>"
9
+ ],
10
+ "flags": {
11
+ "json": {
12
+ "description": "Format output as json.",
13
+ "helpGroup": "GLOBAL",
14
+ "name": "json",
15
+ "allowNo": false,
16
+ "type": "boolean"
17
+ },
18
+ "flags-dir": {
19
+ "helpGroup": "GLOBAL",
20
+ "name": "flags-dir",
21
+ "summary": "Import flag values from a directory.",
22
+ "hasDynamicHelp": false,
23
+ "multiple": false,
24
+ "type": "option"
25
+ }
26
+ },
27
+ "hasDynamicHelp": false,
28
+ "hiddenAliases": [],
29
+ "id": "ps:info",
30
+ "pluginAlias": "sf-plugin-permission-sets",
31
+ "pluginName": "sf-plugin-permission-sets",
32
+ "pluginType": "core",
33
+ "strict": true,
34
+ "summary": "Show information about the permission-sets plugin.",
35
+ "enableJsonFlag": true,
36
+ "isESM": true,
37
+ "relativePath": [
38
+ "lib",
39
+ "commands",
40
+ "ps",
41
+ "info.js"
42
+ ],
43
+ "aliasPermutations": [],
44
+ "permutations": [
45
+ "ps:info",
46
+ "info:ps"
47
+ ]
48
+ }
49
+ },
50
+ "version": "0.0.0-dev.11"
4
51
  }
package/package.json CHANGED
@@ -1,187 +1,149 @@
1
1
  {
2
- "name": "sf-plugin-permission-sets",
3
- "description": "",
4
- "version": "0.0.0-dev",
5
- "dependencies": {
6
- "@oclif/core": "^4",
7
- "@salesforce/core": "^8",
8
- "@salesforce/sf-plugins-core": "^12"
9
- },
10
- "devDependencies": {
11
- "@oclif/plugin-command-snapshot": "^5.1.9",
12
- "@salesforce/cli-plugins-testkit": "^5.3.10",
13
- "@salesforce/dev-scripts": "^10",
14
- "eslint-plugin-sf-plugin": "^1.18.6",
15
- "husky": "^7.0.4",
16
- "oclif": "^4.14.0",
17
- "ts-node": "^10.9.2",
18
- "typescript": "^5.4.5"
19
- },
20
- "engines": {
21
- "node": ">=18.0.0"
22
- },
23
- "files": [
24
- "/lib",
25
- "/messages",
26
- "/oclif.manifest.json",
27
- "/oclif.lock"
28
- ],
29
- "keywords": [
30
- "force",
31
- "salesforce",
32
- "salesforcedx",
33
- "sf",
34
- "sf-plugin",
35
- "sfdx",
36
- "sfdx-plugin"
37
- ],
38
- "license": "BSD-3-Clause",
39
- "oclif": {
40
- "commands": "./lib/commands",
41
- "bin": "sf",
42
- "topicSeparator": " ",
43
- "devPlugins": [
44
- "@oclif/plugin-help"
45
- ],
46
- "topics": {
47
- "hello": {
48
- "description": "Commands to say hello."
49
- }
50
- },
51
- "flexibleTaxonomy": true
52
- },
53
- "scripts": {
54
- "build": "wireit",
55
- "clean": "sf-clean",
56
- "clean-all": "sf-clean all",
57
- "compile": "wireit",
58
- "docs": "sf-docs",
59
- "format": "wireit",
60
- "link-check": "wireit",
61
- "lint": "wireit",
62
- "prepare": "husky install",
63
- "postpack": "sf-clean --ignore-signing-artifacts",
64
- "prepack": "sf-prepack",
65
- "test": "wireit",
66
- "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
67
- "test:only": "wireit",
68
- "version": "oclif readme"
69
- },
70
- "publishConfig": {
71
- "access": "public"
72
- },
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"
2
+ "name": "sf-plugin-permission-sets",
3
+ "description": "",
4
+ "version": "0.0.0-dev.11",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/zaclummys/sf-plugin-permission-sets.git"
92
8
  },
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": []
9
+ "dependencies": {
10
+ "@oclif/core": "^4",
11
+ "@salesforce/core": "^8",
12
+ "@salesforce/sf-plugins-core": "^12"
103
13
  },
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": []
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"
114
21
  },
115
- "test:compile": {
116
- "command": "tsc -p \"./test\" --pretty",
117
- "files": [
118
- "test/**/*.ts",
119
- "**/tsconfig.json"
120
- ],
121
- "output": []
22
+ "engines": {
23
+ "node": ">=18.0.0"
122
24
  },
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": []
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
144
54
  },
145
- "test:command-reference": {
146
- "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
147
- "files": [
148
- "src/**/*.ts",
149
- "messages/**",
150
- "package.json"
151
- ],
152
- "output": [
153
- "tmp/root"
154
- ]
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"
155
69
  },
156
- "test:deprecation-policy": {
157
- "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
158
- "files": [
159
- "src/**/*.ts"
160
- ],
161
- "output": [],
162
- "dependencies": [
163
- "compile"
164
- ]
70
+ "publishConfig": {
71
+ "access": "public"
165
72
  },
166
- "test:json-schema": {
167
- "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
168
- "files": [
169
- "src/**/*.ts",
170
- "schemas"
171
- ],
172
- "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
+ }
173
145
  },
174
- "link-check": {
175
- "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",
176
- "files": [
177
- "./*.md",
178
- "./!(CHANGELOG).md",
179
- "messages/**/*.md"
180
- ],
181
- "output": []
182
- }
183
- },
184
- "exports": "./lib/index.js",
185
- "type": "module",
186
- "author": "Isaac Ferreira"
146
+ "exports": "./lib/index.js",
147
+ "type": "module",
148
+ "author": "Isaac Ferreira"
187
149
  }
@@ -1,29 +0,0 @@
1
- # summary
2
-
3
- Say hello.
4
-
5
- # description
6
-
7
- Say hello either to the world or someone you know.
8
-
9
- # flags.name.summary
10
-
11
- The name of the person you'd like to say hello to.
12
-
13
- # flags.name.description
14
-
15
- This person can be anyone in the world!
16
-
17
- # examples
18
-
19
- - Say hello to the world:
20
-
21
- <%= config.bin %> <%= command.id %>
22
-
23
- - Say hello to someone you know:
24
-
25
- <%= config.bin %> <%= command.id %> --name Astro
26
-
27
- # info.hello
28
-
29
- Hello %s at %s.