dksetup 1.0.24 → 1.0.26
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/justfile +1 -4
- package/package.json +1 -1
package/justfile
CHANGED
|
@@ -6,9 +6,6 @@ set shell := ["powershell", "-c"]
|
|
|
6
6
|
publish:
|
|
7
7
|
node dksetup-publish.mjs
|
|
8
8
|
|
|
9
|
-
# Bump only
|
|
10
|
-
bump:
|
|
11
|
-
npm version patch --no-git-tag-version
|
|
12
9
|
|
|
13
10
|
# Show current version
|
|
14
11
|
version:
|
|
@@ -20,5 +17,5 @@ install:
|
|
|
20
17
|
|
|
21
18
|
# Help
|
|
22
19
|
help:
|
|
23
|
-
echo "Available commands: publish,
|
|
20
|
+
echo "Available commands: publish, version, install"
|
|
24
21
|
|