datatruck 0.0.2 → 0.0.3

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 ADDED
@@ -0,0 +1,19 @@
1
+ # datatruck
2
+
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`051a7da`](https://github.com/swordev/datatruck/commit/051a7da225fcfea1c30a4fbfa8aea1b8f5538367) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix dist files
8
+
9
+ - Updated dependencies [[`051a7da`](https://github.com/swordev/datatruck/commit/051a7da225fcfea1c30a4fbfa8aea1b8f5538367)]:
10
+ - @datatruck/cli@0.0.3
11
+
12
+ ## 0.0.2
13
+
14
+ ### Patch Changes
15
+
16
+ - [`0911351`](https://github.com/swordev/datatruck/commit/09113517e1a77f2d2a1e19e4c3d9af7da1e28415) Thanks [@juanrgm](https://github.com/juanrgm)! - Publish docker image
17
+
18
+ - Updated dependencies [[`0911351`](https://github.com/swordev/datatruck/commit/09113517e1a77f2d2a1e19e4c3d9af7da1e28415)]:
19
+ - @datatruck/cli@0.0.2
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datatruck",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Tool for creating and managing backups",
5
5
  "homepage": "https://github.com/swordev/datatruck#readme",
6
6
  "bugs": {
@@ -17,21 +17,13 @@
17
17
  "url": "https://github.com/juanrgm"
18
18
  },
19
19
  "bin": {
20
- "datatruck": "lib/index.js",
21
- "dtt": "lib/index.js"
20
+ "datatruck": "index.js",
21
+ "dtt": "index.js"
22
22
  },
23
- "files": [
24
- "lib"
25
- ],
26
23
  "dependencies": {
27
- "@datatruck/cli": "0.0.2"
24
+ "@datatruck/cli": "0.0.3"
28
25
  },
29
26
  "engine": {
30
27
  "node": ">=16.0.0"
31
- },
32
- "scripts": {
33
- "build": "tsc --build",
34
- "clean": "tsc --build --clean",
35
- "watch": "tsc --build -w"
36
28
  }
37
29
  }