@514labs/moose-cli 0.3.65 → 0.3.68

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
@@ -24,7 +24,7 @@ The Moose CLI is a command-line tool that allows you to create, manage, and depl
24
24
  To create a new application, run the following command:
25
25
 
26
26
  ```bash
27
- igloo init
27
+ moose init
28
28
  ```
29
29
 
30
30
  This will prompt you to enter a name for your application. Once you have entered a name, the CLI will create a new directory with the name you provided and scaffold out a new Moose application.
@@ -34,7 +34,7 @@ This will prompt you to enter a name for your application. Once you have entered
34
34
  The CLI will create the following files and directories:
35
35
 
36
36
  ```
37
- ├── .igloo
37
+ ├── .moose
38
38
  │ ├── .clickhouse
39
39
  │ ├── .redpanda
40
40
  │ └── ...
@@ -61,16 +61,16 @@ The CLI will create the following files and directories:
61
61
 
62
62
  The `app` directory contains all of the code for your application. This includes all of the dataframes, flows, ingests, and insights that make up your application. This directory is where you will spend most of your time developing your application.
63
63
 
64
- ##### `.igloo` for contributors only
64
+ ##### `.moose` for contributors only
65
65
 
66
- The `.igloo` directory contains all of the configuration files for an application. This includes configuration for the local state of the application as well as any required local infrastructure. This directory is only used by contributors to the application and should not be committed to source control. Modifying files in this directory may cause unexpected behavior.
66
+ The `.moose` directory contains all of the configuration files for an application. This includes configuration for the local state of the application as well as any required local infrastructure. This directory is only used by contributors to the application and should not be committed to source control. Modifying files in this directory may cause unexpected behavior.
67
67
 
68
68
  ### Running your application in development mode
69
69
 
70
70
  To run your application, run the following command:
71
71
 
72
72
  ```bash
73
- igloo dev
73
+ moose dev
74
74
  ```
75
75
 
76
76
  This will start all of the required infrastructure and run your application in development mode. You can now make changes to your application and see them reflected in real-time.
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ function getExePath() {
23
23
  }
24
24
  try {
25
25
  // Since the binary will be located inside `node_modules`, we can simply call `require.resolve`
26
- return require.resolve("@514labs/moose-cli-".concat(os, "-").concat(arch, "/bin/igloo-cli").concat(extension));
26
+ return require.resolve("@514labs/moose-cli-".concat(os, "-").concat(arch, "/bin/moose-cli").concat(extension));
27
27
  }
28
28
  catch (e) {
29
29
  throw new Error("Couldn't find application binary inside node_modules for ".concat(os, "-").concat(arch));
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@514labs/moose-cli",
3
- "version": "0.3.65",
3
+ "version": "0.3.68",
4
4
  "bin": {
5
- "igloo": "dist/index.js",
6
- "igloo-cli": "dist/index.js"
5
+ "moose": "dist/index.js",
6
+ "moose-cli": "dist/index.js"
7
7
  },
8
8
  "files": [
9
9
  "dist"
@@ -17,10 +17,10 @@
17
17
  "typescript": "^4.9.5"
18
18
  },
19
19
  "optionalDependencies": {
20
- "@514labs/moose-cli-darwin-arm64": "0.3.65",
21
- "@514labs/moose-cli-darwin-x64": "0.3.65",
22
- "@514labs/moose-cli-linux-arm64": "0.3.65",
23
- "@514labs/moose-cli-linux-x64": "0.3.65"
20
+ "@514labs/moose-cli-darwin-arm64": "0.3.68",
21
+ "@514labs/moose-cli-darwin-x64": "0.3.68",
22
+ "@514labs/moose-cli-linux-arm64": "0.3.68",
23
+ "@514labs/moose-cli-linux-x64": "0.3.68"
24
24
  },
25
25
  "scripts": {
26
26
  "typecheck": "tsc --noEmit",