Skip to content

Commit be63475

Browse files
committed
v1.0.1
1 parent 9ccf52b commit be63475

File tree

4 files changed

+20
-15
lines changed

4 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v1.0.1
4+
5+
* Bump dependencies
6+
* Clarify that VS Code tasks are what is being used
7+
38
## v1.0.0
49

510
* Initial release

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ You are expected to have CommandBox installed on your system.
88

99
### Scripts
1010

11-
This extension supports running CommandBox scripts as [tasks](https://code.visualstudio.com/docs/editor/tasks). Scripts containing the name 'build', 'compile', or 'watch' are treated as build tasks. Any scripts defined in the `box.json` will be auto-detected by default and added as tasks. You can also annotate task definitions in your `tasks.json` files using the `type` as `commandbox` and `script` as the script name.
11+
This extension supports running CommandBox scripts as [VS Code tasks](https://code.visualstudio.com/docs/editor/tasks). Scripts containing the name 'build', 'compile', or 'watch' are treated as build tasks. Any scripts defined in the `box.json` will be auto-detected by default and added as VS Code tasks. You can also annotate VS Code task definitions in your `tasks.json` files using the `type` as `commandbox` and `script` as the script name.
1212

13-
To run scripts as tasks, use the Task menu items or commands.
13+
To run scripts as VS Code tasks, use the Task menu items or commands.
1414

1515
#### Script Explorer
1616

@@ -20,13 +20,13 @@ The CommandBox Script Explorer shows the CommandBox scripts found in your worksp
2020

2121
#### Run Scripts from the Editor
2222

23-
The extension supports to run the selected script as a task when editing the `box.json` file. You can either run a script from the hover shown on a script or using the command `commandbox: Run Selected Script`.
23+
The extension supports to run the selected script as a VS Code task when editing the `box.json` file. You can either run a script from the hover shown on a script or using the command `commandbox: Run Selected Script`.
2424

2525
![Box Script Hover](./images/box-script-hover.png)
2626

2727
#### Run Scripts from a Folder in the Explorer
2828

29-
The extension supports running a script as a task from a folder in the Explorer. The command `commandbox: Run Script in Folder...` shown in the Explorer context menu finds all scripts in `box.json` files that are contained in this folder. You can then select the script to be executed as a task from the resulting list. You enable this support with the `commandbox.runScriptFromFolder` which is `false` by default.
29+
The extension supports running a script as a VS Code task from a folder in the Explorer. The command `commandbox: Run Script in Folder...` shown in the Explorer context menu finds all scripts in `box.json` files that are contained in this folder. You can then select the script to be executed as a task from the resulting list. You enable this support with the `commandbox.runScriptFromFolder` which is `false` by default.
3030

3131
### Editing server.json
3232

@@ -74,12 +74,12 @@ The extension also fetches data from ForgeBox to provide auto-completion and inf
7474

7575
## Settings
7676

77-
- `commandbox.autoDetect` - Enable detecting scripts as tasks. [*Default*: `on`]
77+
- `commandbox.autoDetect` - Enable detecting scripts as VS Code tasks. [*Default*: `on`]
7878
- `commandbox.exclude` - Glob patterns for folders that should be excluded from automatic script detection. The pattern is matched against the **absolute path** of the `box.json`. For example, to exclude all test folders use '**/test/**'.
7979
- `commandbox.enableScriptExplorer` - Enable an explorer view for CommandBox scripts when there is no top-level `box.json` file. [*Default*: `false`]
8080
- `commandbox.enableRunFromFolder` - Enable running CommandBox scripts from the context menu of folders in Explorer. [*Default*: `false`]
8181
- `commandbox.scriptExplorerAction` - The default click action: `open` or `run`. [*Default*: `open`]
82-
- `commandbox.buildNames` - When a task contains this as part of its name, it will be assigned as a build task. [*Default*: `["build", "compile", "watch"]`]
83-
- `commandbox.testNames` - When a task name starts with this, it will be assigned as a test task. [*Default*: `["test"]`]
82+
- `commandbox.buildNames` - When a VS Code task contains this as part of its name, it will be assigned as a build task. [*Default*: `["build", "compile", "watch"]`]
83+
- `commandbox.testNames` - When a VS Code task name starts with this, it will be assigned as a test task. [*Default*: `["test"]`]
8484
- `commandbox.forgebox.fetchOnlinePackageInfo` - Fetch data from ForgeBox to provide auto-completion and information on hover features on dependencies. [*Default*: `true`]
8585
- `commandbox.forgebox.endpointUrl` - The URL for the ForgeBox endpoint. Customize for ForgeBox Enterprise. [*Default*: `https://www.forgebox.io`]

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "ortus-solutions",
44
"displayName": "CommandBox",
55
"description": "Extension to add support for CommandBox",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"license": "MIT",
88
"engines": {
99
"vscode": "^1.43.0"
@@ -43,7 +43,7 @@
4343
"@typescript-eslint/parser": "^2.24.0",
4444
"clean-webpack-plugin": "3.0.0",
4545
"eslint": "^6.8.0",
46-
"eslint-plugin-jsdoc": "^22.0.1",
46+
"eslint-plugin-jsdoc": "^22.1.0",
4747
"rimraf": "^3.0.2",
4848
"ts-loader": "^6.2.1",
4949
"typescript": "^3.8.3",
@@ -234,7 +234,7 @@
234234
"compile",
235235
"watch"
236236
],
237-
"description": "When a task contains this as part of its name, it will be assigned as a build task.",
237+
"description": "When a VS Code task contains this as part of its name, it will be assigned as a build task.",
238238
"scope": "resource"
239239
},
240240
"commandbox.testNames": {
@@ -245,7 +245,7 @@
245245
"default": [
246246
"test"
247247
],
248-
"description": "When a task name starts with this, it will be assigned as a test task.",
248+
"description": "When a VS Code task name starts with this, it will be assigned as a test task.",
249249
"scope": "resource"
250250
},
251251
"commandbox.forgebox.fetchOnlinePackageInfo": {

0 commit comments

Comments
 (0)