miqro 1.7.12 → 1.7.14

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.
@@ -1,2 +1,2 @@
1
- export declare const usage = "usage: [NODE_ENV=development] npx miqro new:test <identifier ex: SRC_MAIN>";
1
+ export declare const usage = "usage: [NODE_ENV=development] npx miqro new:test <identifier ex: TEST_SOMEFILE>";
2
2
  export declare const main: () => void;
@@ -4,7 +4,7 @@ exports.main = exports.usage = void 0;
4
4
  const core_1 = require("@miqro/core");
5
5
  const fs_1 = require("fs");
6
6
  const path_1 = require("path");
7
- exports.usage = `usage: [NODE_ENV=development] npx miqro new:test <identifier ex: SRC_MAIN>`;
7
+ exports.usage = `usage: [NODE_ENV=development] npx miqro new:test <identifier ex: TEST_SOMEFILE>`;
8
8
  const testTemplates = {
9
9
  js: (category) => `const options = {
10
10
  category: "${category}",
package/dist/cmds/new.js CHANGED
@@ -120,7 +120,7 @@ const mainJS = (typescript = false) => {
120
120
  (0, fs_1.mkdirSync)((0, path_1.resolve)(appFolder, "test"), {
121
121
  recursive: true
122
122
  });
123
- (0, utils_1.execSync)(`npx miqro test:new test_api_health`, {
123
+ (0, utils_1.execSync)(`npx miqro new:test test_api_health`, {
124
124
  cwd: appFolder
125
125
  });
126
126
  console.log(`new project created on ${appFolder}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miqro",
3
- "version": "1.7.12",
3
+ "version": "1.7.14",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,10 +20,10 @@
20
20
  "@miqro/core": "^1.5.11",
21
21
  "@miqro/parser": "^0.0.5",
22
22
  "@miqro/runner": "^1.2.5",
23
- "@miqro/test": "^0.0.11",
24
23
  "deep-diff": "1.0.2"
25
24
  },
26
25
  "devDependencies": {
26
+ "@miqro/test": "^0.0.11",
27
27
  "@types/cookie": "^0.4.1",
28
28
  "@types/deep-diff": "1.0.1",
29
29
  "@types/node": "^16.7.10",