@gesslar/muddy 0.4.1 → 0.4.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/README.md +6 -6
- package/package.json +23 -23
- package/src/Muddy.js +0 -3
package/README.md
CHANGED
|
@@ -37,8 +37,8 @@ The only difference between invoking **muddy** over **muddler** is the cli.
|
|
|
37
37
|
## Immediate Invocation
|
|
38
38
|
|
|
39
39
|
```shell
|
|
40
|
-
#
|
|
41
|
-
|
|
40
|
+
# npm
|
|
41
|
+
npx @gesslar/muddy --help
|
|
42
42
|
|
|
43
43
|
# npm
|
|
44
44
|
npx @gesslar/muddy --help
|
|
@@ -47,10 +47,10 @@ npx @gesslar/muddy --help
|
|
|
47
47
|
## Install as a dependency, if you want, you don't have to
|
|
48
48
|
|
|
49
49
|
```shell
|
|
50
|
-
#
|
|
51
|
-
|
|
50
|
+
# npm
|
|
51
|
+
npm add -d @gesslar/muddy
|
|
52
52
|
|
|
53
|
-
#npm
|
|
53
|
+
# npm
|
|
54
54
|
npm i -d @gesslar/muddy
|
|
55
55
|
```
|
|
56
56
|
|
|
@@ -66,7 +66,7 @@ Which is exactly how everybody likes their sex, yes? Yes. Okay.
|
|
|
66
66
|
|
|
67
67
|
## License
|
|
68
68
|
|
|
69
|
-
muddy
|
|
69
|
+
muddy is released into the public domain under the
|
|
70
70
|
[Unlicense](UNLICENSE.txt).
|
|
71
71
|
|
|
72
72
|
This package includes or depends on third-party components under their own
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "gesslar",
|
|
6
6
|
"url": "https://gesslar.dev"
|
|
7
7
|
},
|
|
8
|
-
"version": "0.4.
|
|
8
|
+
"version": "0.4.3",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/gesslar/muddy.git"
|
|
@@ -29,40 +29,40 @@
|
|
|
29
29
|
"bamba"
|
|
30
30
|
],
|
|
31
31
|
"license": "Unlicense",
|
|
32
|
-
"main": "src/cli.js",
|
|
33
32
|
"engines": {
|
|
34
33
|
"node": ">=v24.13.0"
|
|
35
34
|
},
|
|
36
35
|
"icon": "mud-128.png",
|
|
37
36
|
"homepage": "https://github.com/gesslar/muddy",
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"@gesslar/actioneer": "^2.2.0",
|
|
40
|
-
"@gesslar/colours": "^0.8.0",
|
|
41
|
-
"@gesslar/toolkit": "^3.33.1",
|
|
42
|
-
"adm-zip": "^0.5.16",
|
|
43
|
-
"commander": "^14.0.3",
|
|
44
|
-
"xmlbuilder2": "^4.0.3"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@gesslar/uglier": "^1.4.0",
|
|
48
|
-
"console-ninja": "^1.0.0",
|
|
49
|
-
"eslint": "^10.0.0",
|
|
50
|
-
"typescript": "^5.9.3"
|
|
51
|
-
},
|
|
52
37
|
"scripts": {
|
|
53
38
|
"lint": "eslint",
|
|
54
39
|
"lint:fix": "eslint --fix",
|
|
55
40
|
"types": "tsc -p tsconfig.types.json",
|
|
56
|
-
"build": "mkdir -pv ./dist &&
|
|
57
|
-
"update": "
|
|
58
|
-
"submit": "
|
|
41
|
+
"build": "mkdir -pv ./dist && npm pack --pack-destination ./dist/",
|
|
42
|
+
"update": "npx npm-check-updates -u && npm install",
|
|
43
|
+
"submit": "npm publish --access public --//registry.npmjs.org/:_authToken=\"${NPM_ACCESS_TOKEN}\"",
|
|
59
44
|
"test": "node --test",
|
|
60
45
|
"test:watch": "node --test --watch",
|
|
61
46
|
"test:unit": "node --test test/unit/**/*.test.js",
|
|
62
47
|
"muddy": "node src/cli.js work/ThresholdUI -n",
|
|
63
48
|
"pr": "gt submit -p --ai",
|
|
64
|
-
"patch": "
|
|
65
|
-
"minor": "
|
|
66
|
-
"major": "
|
|
49
|
+
"patch": "npm version patch",
|
|
50
|
+
"minor": "npm version minor",
|
|
51
|
+
"major": "npm version major"
|
|
52
|
+
},
|
|
53
|
+
"packageManager": "npm@11.11.0",
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@gesslar/actioneer": "^2.4.0",
|
|
56
|
+
"@gesslar/colours": "^0.8.0",
|
|
57
|
+
"@gesslar/toolkit": "^3.42.0",
|
|
58
|
+
"adm-zip": "^0.5.16",
|
|
59
|
+
"commander": "^14.0.3",
|
|
60
|
+
"xmlbuilder2": "^4.0.3"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@gesslar/uglier": "^2.0.0",
|
|
64
|
+
"console-ninja": "^1.0.0",
|
|
65
|
+
"eslint": "^10.0.2",
|
|
66
|
+
"typescript": "^5.9.3"
|
|
67
67
|
}
|
|
68
|
-
}
|
|
68
|
+
}
|
package/src/Muddy.js
CHANGED
|
@@ -687,9 +687,6 @@ export default class Muddy {
|
|
|
687
687
|
path: Data.prepend(FileSystem.relativeOrAbsolute(projectDirectory, mpackageFile), "/")
|
|
688
688
|
})
|
|
689
689
|
|
|
690
|
-
if(await outputFile.exists)
|
|
691
|
-
await outputFile.delete()
|
|
692
|
-
|
|
693
690
|
await outputFile.write(Data.append(output, "\n"))
|
|
694
691
|
|
|
695
692
|
const size = await outputFile.size()
|