@gesslar/muddy 0.0.1 → 0.1.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/README.md CHANGED
@@ -64,8 +64,6 @@ Also, shout out to [@Edru2](https://github.com/Edru2) for
64
64
 
65
65
  Which is exactly how everybody likes their sex, yes? Yes. Okay.
66
66
 
67
- _did you know there's a javascript.com?? I just found that out. holy shit._
68
-
69
67
  ## License
70
68
 
71
69
  muddy itself is released into the public domain under the
@@ -80,7 +78,6 @@ licenses:
80
78
  | [@gesslar/colours](https://github.com/gesslar/colours) | Unlicense |
81
79
  | [@gesslar/toolkit](https://github.com/gesslar/toolkit) | Unlicense |
82
80
  | [adm-zip](https://github.com/cthackers/adm-zip) | MIT |
83
- | [archiver](https://github.com/archiverjs/node-archiver) | MIT |
84
81
  | [commander](https://github.com/tj/commander.js) | MIT |
85
82
  | [xmlbuilder2](https://github.com/oozcitak/xmlbuilder2) | MIT |
86
83
 
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "name": "gesslar",
6
6
  "url": "https://gesslar.dev"
7
7
  },
8
- "version": "0.0.1",
8
+ "version": "0.1.0",
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "git+https://github.com/gesslar/muddy.git"
@@ -40,12 +40,11 @@
40
40
  "@gesslar/colours": "^0.8.0",
41
41
  "@gesslar/toolkit": "^3.33.0",
42
42
  "adm-zip": "^0.5.16",
43
- "archiver": "^7.0.1",
44
43
  "commander": "^14.0.3",
45
44
  "xmlbuilder2": "^4.0.3"
46
45
  },
47
46
  "devDependencies": {
48
- "@gesslar/uglier": "^1.3.0",
47
+ "@gesslar/uglier": "^1.4.0",
49
48
  "console-ninja": "^1.0.0",
50
49
  "eslint": "^10.0.0",
51
50
  "typescript": "^5.9.3"
package/src/Muddy.js CHANGED
@@ -633,7 +633,11 @@ export default class Muddy {
633
633
  glog.info(`Adding contents of '${workDirectory.path}'`)
634
634
  mpackage.addLocalFolder(workDirectory.path)
635
635
 
636
- const mpackageFile = projectDirectory.getFile(`${mfile.package}.mpackage`)
636
+ const buildDirectory = projectDirectory.getDirectory("build")
637
+ await buildDirectory.assureExists()
638
+
639
+ const mpackageFile = buildDirectory.getFile(`${mfile.package}.mpackage`)
640
+
637
641
  if(await mpackageFile.exists)
638
642
  await mpackageFile.delete()
639
643