libdragon 10.5.0 → 10.6.0

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- ## [10.5.0] - 2022-04-09
3
+ ## [10.6.0] - 2022-04-09
4
4
  ### Fixed
5
5
 
6
6
  - Fix a path bug that would cause incorrect behaviour when the command is run
@@ -14,7 +14,7 @@ were saving project info mistakenly.
14
14
 
15
15
  - `disasm` action to simplify disassembling ELF files generated by the toolchain.
16
16
  - `version` action to display current version.
17
- - `clean` action to remove the libdragon project.
17
+ - `destroy` action to remove the libdragon project.
18
18
  - Additional documentation for flags.
19
19
  - Print duration information when verbose.
20
20
 
@@ -5,7 +5,7 @@ const { mustHaveProject, destroyContainer } = require('./utils');
5
5
  const { CONFIG_FILE, LIBDRAGON_PROJECT_MANIFEST } = require('../constants');
6
6
  const { fileExists, dirExists } = require('../helpers');
7
7
 
8
- const clean = async (libdragonInfo) => {
8
+ const destroy = async (libdragonInfo) => {
9
9
  await mustHaveProject(libdragonInfo);
10
10
 
11
11
  await destroyContainer(libdragonInfo);
@@ -22,11 +22,11 @@ const clean = async (libdragonInfo) => {
22
22
  };
23
23
 
24
24
  module.exports = {
25
- name: 'clean',
26
- fn: clean,
25
+ name: 'destroy',
26
+ fn: destroy,
27
27
  showStatus: true,
28
28
  usage: {
29
- name: 'clean',
29
+ name: 'destroy',
30
30
  summary: 'Do clean-up for current project.',
31
31
  description: `Removes libdragon configuration from current project and removes any known containers but will not touch previously vendored files. \`libdragon\` will not work anymore for this project.
32
32
 
@@ -13,5 +13,5 @@ module.exports = {
13
13
 
14
14
  help: require('./help'),
15
15
  version: require('./version'),
16
- clean: require('./clean'),
16
+ destroy: require('./destroy'),
17
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "libdragon",
3
- "version": "10.5.0",
3
+ "version": "10.6.0",
4
4
  "description": "This is a docker wrapper for libdragon",
5
5
  "main": "index.js",
6
6
  "engines": {