vcpm 0.2.0 → 0.2.2

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.
@@ -36,7 +36,12 @@ const createDistZip = (isDev) => {
36
36
  dot: true,
37
37
  });
38
38
  archive.finalize();
39
- console.log("Project builded for production!");
39
+ if (isDev) {
40
+ console.log("Project builded for development!");
41
+ }
42
+ else {
43
+ console.log("Project builded for production!");
44
+ }
40
45
  };
41
46
  const checkDistFolder = () => {
42
47
  if (!isExists("dist")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcpm",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "VCPM - Voxel Core Project Manager. Is unoficall CLI util for managing content packs",
5
5
  "main": "dist/index.js",
6
6
  "preferGlobal": "true",