sf-debug-log 0.0.8 → 0.0.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.
- package/README.md +29 -112
- package/messages/retrieve.md +1 -1
- package/oclif.manifest.json +2 -2
- package/package.json +202 -199
package/README.md
CHANGED
|
@@ -1,145 +1,62 @@
|
|
|
1
|
-
# debug-log
|
|
1
|
+
# sf-debug-log
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
## Using the template
|
|
6
|
-
|
|
7
|
-
This repository provides a template for creating a plugin for the Salesforce CLI. To convert this template to a working plugin:
|
|
8
|
-
|
|
9
|
-
1. Please get in touch with the Platform CLI team. We want to help you develop your plugin.
|
|
10
|
-
2. Generate your plugin:
|
|
11
|
-
|
|
12
|
-
```
|
|
13
|
-
sf plugins install dev
|
|
14
|
-
sf dev generate plugin
|
|
15
|
-
|
|
16
|
-
git init -b main
|
|
17
|
-
git add . && git commit -m "chore: initial commit"
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
3. Create your plugin's repo in the salesforcecli github org
|
|
21
|
-
4. When you're ready, replace the contents of this README with the information you want.
|
|
22
|
-
|
|
23
|
-
## Learn about `sf` plugins
|
|
24
|
-
|
|
25
|
-
Salesforce CLI plugins are based on the [oclif plugin framework](<(https://oclif.io/docs/introduction.html)>). Read the [plugin developer guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_plugins.meta/sfdx_cli_plugins/cli_plugins_architecture_sf_cli.htm) to learn about Salesforce CLI plugin development.
|
|
26
|
-
|
|
27
|
-
This repository contains a lot of additional scripts and tools to help with general Salesforce node development and enforce coding standards. You should familiarize yourself with some of the [node developer packages](#tooling) used by Salesforce.
|
|
28
|
-
|
|
29
|
-
Additionally, there are some additional tests that the Salesforce CLI will enforce if this plugin is ever bundled with the CLI. These test are included by default under the `posttest` script and it is required to keep these tests active in your plugin if you plan to have it bundled.
|
|
30
|
-
|
|
31
|
-
### Tooling
|
|
32
|
-
|
|
33
|
-
- [@salesforce/core](https://github.com/forcedotcom/sfdx-core)
|
|
34
|
-
- [@salesforce/kit](https://github.com/forcedotcom/kit)
|
|
35
|
-
- [@salesforce/sf-plugins-core](https://github.com/salesforcecli/sf-plugins-core)
|
|
36
|
-
- [@salesforce/ts-types](https://github.com/forcedotcom/ts-types)
|
|
37
|
-
- [@salesforce/ts-sinon](https://github.com/forcedotcom/ts-sinon)
|
|
38
|
-
- [@salesforce/dev-config](https://github.com/forcedotcom/dev-config)
|
|
39
|
-
- [@salesforce/dev-scripts](https://github.com/forcedotcom/dev-scripts)
|
|
40
|
-
|
|
41
|
-
### Hooks
|
|
42
|
-
|
|
43
|
-
For cross clouds commands, e.g. `sf env list`, we utilize [oclif hooks](https://oclif.io/docs/hooks) to get the relevant information from installed plugins.
|
|
44
|
-
|
|
45
|
-
This plugin includes sample hooks in the [src/hooks directory](src/hooks). You'll just need to add the appropriate logic. You can also delete any of the hooks if they aren't required for your plugin.
|
|
46
|
-
|
|
47
|
-
# Everything past here is only a suggestion as to what should be in your specific plugin's description
|
|
48
|
-
|
|
49
|
-
This plugin is bundled with the [Salesforce CLI](https://developer.salesforce.com/tools/sfdxcli). For more information on the CLI, read the [getting started guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm).
|
|
50
|
-
|
|
51
|
-
We always recommend using the latest version of these commands bundled with the CLI, however, you can install a specific version or tag if needed.
|
|
3
|
+
Commands to manage Salesforce debug logs.
|
|
52
4
|
|
|
53
5
|
## Install
|
|
54
6
|
|
|
55
7
|
```bash
|
|
56
|
-
sf plugins install debug-log
|
|
8
|
+
sf plugins install sf-debug-log
|
|
57
9
|
```
|
|
58
10
|
|
|
59
|
-
##
|
|
60
|
-
|
|
61
|
-
Please report any issues at https://github.com/forcedotcom/cli/issues
|
|
62
|
-
|
|
63
|
-
## Contributing
|
|
64
|
-
|
|
65
|
-
1. Please read our [Code of Conduct](CODE_OF_CONDUCT.md)
|
|
66
|
-
2. Create a new issue before starting your project so that we can keep track of
|
|
67
|
-
what you are trying to add/fix. That way, we can also offer suggestions or
|
|
68
|
-
let you know if there is already an effort in progress.
|
|
69
|
-
3. Fork this repository.
|
|
70
|
-
4. [Build the plugin locally](#build)
|
|
71
|
-
5. Create a _topic_ branch in your fork. Note, this step is recommended but technically not required if contributing using a fork.
|
|
72
|
-
6. Edit the code in your fork.
|
|
73
|
-
7. Write appropriate tests for your changes. Try to achieve at least 95% code coverage on any new code. No pull request will be accepted without unit tests.
|
|
74
|
-
8. Sign CLA (see [CLA](#cla) below).
|
|
75
|
-
9. Send us a pull request when you are done. We'll review your code, suggest any needed changes, and merge it in.
|
|
76
|
-
|
|
77
|
-
### CLA
|
|
11
|
+
## Commands
|
|
78
12
|
|
|
79
|
-
|
|
80
|
-
Agreement. You can do so by going to https://cla.salesforce.com/sign-cla.
|
|
13
|
+
<!-- commands -->
|
|
81
14
|
|
|
82
|
-
|
|
15
|
+
- [`sf trace new`](#sf-trace-new)
|
|
16
|
+
- [`sf debug retrieve`](#sf-debug-retrieve)
|
|
83
17
|
|
|
84
|
-
|
|
18
|
+
## `sf trace new`
|
|
85
19
|
|
|
86
|
-
|
|
87
|
-
# Clone the repository
|
|
88
|
-
git clone git@github.com:salesforcecli/debug-log
|
|
20
|
+
Create a new trace flag.
|
|
89
21
|
|
|
90
|
-
# Install the dependencies and compile
|
|
91
|
-
yarn && yarn build
|
|
92
22
|
```
|
|
23
|
+
USAGE
|
|
24
|
+
$ sf trace new
|
|
93
25
|
|
|
94
|
-
|
|
26
|
+
FLAGS
|
|
27
|
+
-o, --targetusername=<value> [required] A username or alias for the target org.
|
|
28
|
+
-u, --name=<value> The name of the user to trace.
|
|
29
|
+
-t, --time=<value> [default: 60] The number of minutes to trace.
|
|
95
30
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
./bin/dev hello world
|
|
99
|
-
```
|
|
31
|
+
GLOBAL FLAGS
|
|
32
|
+
--json Format output as json.
|
|
100
33
|
|
|
101
|
-
|
|
34
|
+
DESCRIPTION
|
|
35
|
+
Create a new trace flag.
|
|
102
36
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
sf plugins link .
|
|
106
|
-
# To verify
|
|
107
|
-
sf plugins
|
|
37
|
+
EXAMPLES
|
|
38
|
+
sf trace new -o DeveloperEdition -u "Raffaele Preziosi" -t 10
|
|
108
39
|
```
|
|
109
40
|
|
|
110
|
-
##
|
|
111
|
-
|
|
112
|
-
<!-- commands -->
|
|
113
|
-
|
|
114
|
-
- [`sf hello world`](#sf-hello-world)
|
|
115
|
-
|
|
116
|
-
## `sf hello world`
|
|
41
|
+
## `sf debug retrieve`
|
|
117
42
|
|
|
118
|
-
|
|
43
|
+
Retrieve apex log files.
|
|
119
44
|
|
|
120
45
|
```
|
|
121
46
|
USAGE
|
|
122
|
-
$ sf
|
|
47
|
+
$ sf debug retrieve
|
|
123
48
|
|
|
124
49
|
FLAGS
|
|
125
|
-
-
|
|
50
|
+
-o, --targetusername=<value> [required] A username or alias for the target org.
|
|
51
|
+
-u, --name=<value> The name of the user to trace.
|
|
52
|
+
-t, --time=<value> [default: 60] Minutes to retrieve logs for.
|
|
126
53
|
|
|
127
54
|
GLOBAL FLAGS
|
|
128
55
|
--json Format output as json.
|
|
129
56
|
|
|
130
57
|
DESCRIPTION
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
Say hello either to the world or someone you know.
|
|
58
|
+
Retrieves apex log files from the Salesforce platform.
|
|
134
59
|
|
|
135
60
|
EXAMPLES
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
$ sf hello world
|
|
139
|
-
|
|
140
|
-
Say hello to someone you know:
|
|
141
|
-
|
|
142
|
-
$ sf hello world --name Astro
|
|
61
|
+
sf debug retrieve -o DeveloperEdition -u "Raffaele Preziosi" -t 10
|
|
143
62
|
```
|
|
144
|
-
|
|
145
|
-
<!-- commandsstop -->
|
package/messages/retrieve.md
CHANGED
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.9",
|
|
3
3
|
"commands": {
|
|
4
4
|
"debug:retrieve": {
|
|
5
5
|
"id": "debug:retrieve",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"name": "time",
|
|
41
41
|
"type": "option",
|
|
42
42
|
"char": "t",
|
|
43
|
-
"summary": "
|
|
43
|
+
"summary": "Minutes to retrieve logs for.",
|
|
44
44
|
"multiple": false,
|
|
45
45
|
"default": 60
|
|
46
46
|
},
|
package/package.json
CHANGED
|
@@ -1,199 +1,202 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "sf-debug-log",
|
|
3
|
-
"description": "Manage Salesforce Debug Logs",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"dependencies": {
|
|
6
|
-
"@oclif/core": "^2.11.8",
|
|
7
|
-
"@salesforce/
|
|
8
|
-
"@salesforce/
|
|
9
|
-
"@salesforce/
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"@salesforce/
|
|
16
|
-
"@salesforce/dev-
|
|
17
|
-
"@salesforce/
|
|
18
|
-
"@salesforce/
|
|
19
|
-
"@
|
|
20
|
-
"@
|
|
21
|
-
"@
|
|
22
|
-
"@typescript-eslint/
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"eslint
|
|
26
|
-
"eslint-config-
|
|
27
|
-
"eslint-config-salesforce
|
|
28
|
-
"eslint-
|
|
29
|
-
"eslint-plugin-
|
|
30
|
-
"eslint-plugin-
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"/
|
|
49
|
-
"/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"sf"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"
|
|
81
|
-
"clean
|
|
82
|
-
"clean
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
"
|
|
95
|
-
},
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
"
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
"
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
"
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
"
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
".
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
"
|
|
177
|
-
]
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
]
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "sf-debug-log",
|
|
3
|
+
"description": "Manage Salesforce Debug Logs",
|
|
4
|
+
"version": "0.0.9",
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"@oclif/core": "^2.11.8",
|
|
7
|
+
"@salesforce/cli": "^2.13.9",
|
|
8
|
+
"@salesforce/core": "^5.2.0",
|
|
9
|
+
"@salesforce/kit": "^3.0.8",
|
|
10
|
+
"@salesforce/sf-plugins-core": "^3.1.14",
|
|
11
|
+
"sanitize-filename": "^1.6.3",
|
|
12
|
+
"tslib": "^2"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@salesforce/cli-plugins-testkit": "^4.3.0",
|
|
16
|
+
"@salesforce/dev-config": "^4.0.1",
|
|
17
|
+
"@salesforce/dev-scripts": "^5.7.0",
|
|
18
|
+
"@salesforce/prettier-config": "^0.0.3",
|
|
19
|
+
"@salesforce/ts-sinon": "^1.4.14",
|
|
20
|
+
"@swc/core": "^1.3.19",
|
|
21
|
+
"@types/inquirer": "^9.0.3",
|
|
22
|
+
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
23
|
+
"@typescript-eslint/parser": "^5.62.0",
|
|
24
|
+
"chai": "^4.3.6",
|
|
25
|
+
"eslint": "^8.47.0",
|
|
26
|
+
"eslint-config-prettier": "^8.5.0",
|
|
27
|
+
"eslint-config-salesforce": "^2.0.2",
|
|
28
|
+
"eslint-config-salesforce-typescript": "^1.1.2",
|
|
29
|
+
"eslint-plugin-import": "2.28.1",
|
|
30
|
+
"eslint-plugin-jsdoc": "^46.4.6",
|
|
31
|
+
"eslint-plugin-sf-plugin": "^1.16.2",
|
|
32
|
+
"husky": "^8.0.0",
|
|
33
|
+
"mocha": "^9.2.2",
|
|
34
|
+
"nyc": "^15.1.0",
|
|
35
|
+
"oclif": "^3.9.1",
|
|
36
|
+
"prettier": "^2.8.8",
|
|
37
|
+
"pretty-quick": "^3.1.3",
|
|
38
|
+
"shx": "0.3.4",
|
|
39
|
+
"sinon": "10.0.0",
|
|
40
|
+
"ts-node": "^10.9.1",
|
|
41
|
+
"typescript": "^5.1.6",
|
|
42
|
+
"wireit": "^0.10.0"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=16.0.0"
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"/lib",
|
|
49
|
+
"/messages",
|
|
50
|
+
"/oclif.manifest.json"
|
|
51
|
+
],
|
|
52
|
+
"keywords": [
|
|
53
|
+
"force",
|
|
54
|
+
"salesforce",
|
|
55
|
+
"sfdx",
|
|
56
|
+
"salesforcedx",
|
|
57
|
+
"sfdx-plugin",
|
|
58
|
+
"sf-plugin",
|
|
59
|
+
"sf"
|
|
60
|
+
],
|
|
61
|
+
"license": "BSD-3-Clause",
|
|
62
|
+
"main": "lib/index.js",
|
|
63
|
+
"oclif": {
|
|
64
|
+
"commands": "./lib/commands",
|
|
65
|
+
"bin": "sf",
|
|
66
|
+
"topicSeparator": " ",
|
|
67
|
+
"devPlugins": [
|
|
68
|
+
"@oclif/plugin-help"
|
|
69
|
+
],
|
|
70
|
+
"topics": {
|
|
71
|
+
"trace": {
|
|
72
|
+
"description": "Manage Salesforce Trace Flags"
|
|
73
|
+
},
|
|
74
|
+
"debug": {
|
|
75
|
+
"description": "Manage Salesforce Debug Logs"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"build": "wireit",
|
|
81
|
+
"clean": "sf-clean",
|
|
82
|
+
"clean-all": "sf-clean all",
|
|
83
|
+
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
|
|
84
|
+
"compile": "wireit",
|
|
85
|
+
"docs": "sf-docs",
|
|
86
|
+
"format": "wireit",
|
|
87
|
+
"lint": "wireit",
|
|
88
|
+
"postinstall": "yarn husky install",
|
|
89
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
90
|
+
"prepack": "sf-prepack",
|
|
91
|
+
"test": "wireit",
|
|
92
|
+
"test:only": "wireit",
|
|
93
|
+
"version": "oclif readme",
|
|
94
|
+
"prepare": "husky install"
|
|
95
|
+
},
|
|
96
|
+
"publishConfig": {
|
|
97
|
+
"access": "public"
|
|
98
|
+
},
|
|
99
|
+
"wireit": {
|
|
100
|
+
"build": {
|
|
101
|
+
"dependencies": [
|
|
102
|
+
"compile",
|
|
103
|
+
"lint"
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
"compile": {
|
|
107
|
+
"command": "tsc -p . --pretty --incremental",
|
|
108
|
+
"files": [
|
|
109
|
+
"src/**/*.ts",
|
|
110
|
+
"**/tsconfig.json",
|
|
111
|
+
"messages/**"
|
|
112
|
+
],
|
|
113
|
+
"output": [
|
|
114
|
+
"lib/**",
|
|
115
|
+
"*.tsbuildinfo"
|
|
116
|
+
],
|
|
117
|
+
"clean": "if-file-deleted"
|
|
118
|
+
},
|
|
119
|
+
"format": {
|
|
120
|
+
"command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
|
|
121
|
+
"files": [
|
|
122
|
+
"src/**/*.ts",
|
|
123
|
+
"test/**/*.ts",
|
|
124
|
+
"schemas/**/*.json",
|
|
125
|
+
"command-snapshot.json",
|
|
126
|
+
".prettier*"
|
|
127
|
+
],
|
|
128
|
+
"output": []
|
|
129
|
+
},
|
|
130
|
+
"lint": {
|
|
131
|
+
"command": "eslint src test --color --cache --cache-location .eslintcache",
|
|
132
|
+
"files": [
|
|
133
|
+
"src/**/*.ts",
|
|
134
|
+
"test/**/*.ts",
|
|
135
|
+
"messages/**",
|
|
136
|
+
"**/.eslint*",
|
|
137
|
+
"**/tsconfig.json"
|
|
138
|
+
],
|
|
139
|
+
"output": []
|
|
140
|
+
},
|
|
141
|
+
"test:compile": {
|
|
142
|
+
"command": "tsc -p \"./test\" --pretty",
|
|
143
|
+
"files": [
|
|
144
|
+
"test/**/*.ts",
|
|
145
|
+
"**/tsconfig.json"
|
|
146
|
+
],
|
|
147
|
+
"output": []
|
|
148
|
+
},
|
|
149
|
+
"test": {
|
|
150
|
+
"dependencies": [
|
|
151
|
+
"test:compile",
|
|
152
|
+
"test:only",
|
|
153
|
+
"lint"
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"test:only": {
|
|
157
|
+
"command": "nyc mocha \"test/**/*.test.ts\"",
|
|
158
|
+
"env": {
|
|
159
|
+
"FORCE_COLOR": "2"
|
|
160
|
+
},
|
|
161
|
+
"files": [
|
|
162
|
+
"test/**/*.ts",
|
|
163
|
+
"src/**/*.ts",
|
|
164
|
+
"**/tsconfig.json",
|
|
165
|
+
".mocha*",
|
|
166
|
+
"!*.nut.ts",
|
|
167
|
+
".nycrc"
|
|
168
|
+
],
|
|
169
|
+
"output": []
|
|
170
|
+
},
|
|
171
|
+
"test:command-reference": {
|
|
172
|
+
"command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
|
|
173
|
+
"files": [
|
|
174
|
+
"src/**/*.ts",
|
|
175
|
+
"messages/**",
|
|
176
|
+
"package.json"
|
|
177
|
+
],
|
|
178
|
+
"output": [
|
|
179
|
+
"tmp/root"
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
"test:deprecation-policy": {
|
|
183
|
+
"command": "\"./bin/dev\" snapshot:compare",
|
|
184
|
+
"files": [
|
|
185
|
+
"src/**/*.ts"
|
|
186
|
+
],
|
|
187
|
+
"output": [],
|
|
188
|
+
"dependencies": [
|
|
189
|
+
"compile"
|
|
190
|
+
]
|
|
191
|
+
},
|
|
192
|
+
"test:json-schema": {
|
|
193
|
+
"command": "\"./bin/dev\" schema:compare",
|
|
194
|
+
"files": [
|
|
195
|
+
"src/**/*.ts",
|
|
196
|
+
"schemas"
|
|
197
|
+
],
|
|
198
|
+
"output": []
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"author": "Raffaele Preziosi"
|
|
202
|
+
}
|