@storm-software/workspace-tools 1.5.19 → 1.5.21

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/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## [1.5.20](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.19...workspace-tools-v1.5.20) (2023-11-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Move the nx.json default config to tasks-runners ([3103757](https://github.com/storm-software/storm-ops/commit/31037576dec87a7291bed5fb4f0626b83e351e1e))
7
+ * **workspace-tools:** Update cache directory in nx.json default ([67e04c6](https://github.com/storm-software/storm-ops/commit/67e04c6dbf7f78f0f713d34abae94a7f45ab7a79))
8
+ * **workspace-tools:** Update env file in preset generator ([c48acad](https://github.com/storm-software/storm-ops/commit/c48acad7b01ee56e7f9304f16b8b32aaa31be441))
9
+
10
+ ## [1.5.19](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.18...workspace-tools-v1.5.19) (2023-11-10)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **workspace-tools:** Update node-library generator to add library to workspace tsconfig and package.json ([325cb72](https://github.com/storm-software/storm-ops/commit/325cb726e37a333bab12bbfbd95b16497dd2a940))
16
+
1
17
  ## [1.5.18](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.17...workspace-tools-v1.5.18) (2023-11-10)
2
18
 
3
19
 
package/config/nx.json CHANGED
@@ -9,7 +9,12 @@
9
9
  },
10
10
  "tasksRunnerOptions": {
11
11
  "default": {
12
- "runner": "nx/tasks-runners/default"
12
+ "runner": "nx/tasks-runners/default",
13
+ "options": {
14
+ "cacheableOperations": ["build", "lint", "format", "test", "e2e"],
15
+ "parallel": 4,
16
+ "cacheDirectory": ".nx/cache"
17
+ }
13
18
  }
14
19
  },
15
20
  "pluginsConfig": {
@@ -107,8 +112,5 @@
107
112
  "e2e": {
108
113
  "cache": true
109
114
  }
110
- },
111
- "parallel": 4,
112
- "cacheDirectory": "node_modules/.cache/nx",
113
- "cacheableOperations": ["build", "lint", "format", "test", "e2e"]
115
+ }
114
116
  }
package/executors.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "executors": {
3
3
  "tsup": {
4
- "implementation": "./executors/tsup/executor",
5
- "schema": "./executors/tsup/schema.json",
4
+ "implementation": "./src/executors/tsup/executor",
5
+ "schema": "./src/executors/tsup/schema.json",
6
6
  "description": "Run a build on the project using tsup configuration",
7
- "hasher": "./executors/tsup/hasher"
7
+ "hasher": "./src/executors/tsup/hasher"
8
8
  }
9
9
  }
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.5.19",
3
+ "version": "1.5.21",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -5,10 +5,10 @@ AKKA_STREAMS_KAFKA_TEST_FILE_LOGGING=true
5
5
  RUST_BACKTRACE="full"
6
6
  # PUPPETEER_SKIP_DOWNLOAD=true
7
7
 
8
- HS_SERVICE_NAME="@<%= organization %>/<%= name %>"
8
+ HS_SERVICE_NAME="@<%= namespace %>/<%= name %>"
9
9
 
10
- SENTRY_ORGANIZATION="stormstack"
11
- SENTRY_PROPERTIES="apps/web/shell"
10
+ SENTRY_ORGANIZATION="<%= organization %>"
11
+ SENTRY_PROPERTIES="apps/web/app"
12
12
 
13
13
  DEFAULT_LOCALE="en_US"
14
14
  DEFAULT_TIMEZONE="America/New_York"
@@ -18,6 +18,7 @@ STORM_REPO_OWNER="sullivanpj"
18
18
  STORM_REPO_WORKER="stormie-bot"
19
19
  STORM_REPO_ORG="<%= organization %>"
20
20
  STORM_REPO_NAME="<%= name %>"
21
+ STORM_REPO_NAMESPACE="<%= namespace %>"
21
22
  STORM_REPO_URL="<%= repositoryUrl %>"
22
23
  STORM_BRANCH="main"
23
24
  STORM_PRE_MAJOR=false
@@ -1,3 +1,3 @@
1
1
  {
2
- "import": ["@storm-software/linting-tools/cspell"]
2
+ "import": ["@storm-software/linting-tools/cspell/config.js"]
3
3
  }
@@ -64,7 +64,7 @@
64
64
  "editor.defaultFormatter": "esbenp.prettier-vscode",
65
65
  "files.associations": {
66
66
  "*.hbs": "handlebars",
67
- "*.4cast": "forecast"
67
+ "*.4cast": "acidic"
68
68
  },
69
69
 
70
70
  "eslint.validate": [
@@ -133,9 +133,9 @@
133
133
  },
134
134
 
135
135
  /******************************
136
- * Forecast
136
+ * Acidic
137
137
  ******************************/
138
- "[forecast]": {
138
+ "[acidic]": {
139
139
  "editor.formatOnSave": true,
140
140
  "editor.defaultFormatter": "Prisma.prisma"
141
141
  },
@@ -2,14 +2,14 @@
2
2
  "version": "2.0.0",
3
3
  "tasks": [
4
4
  {
5
- "label": "Forecast CodeGen",
6
- "command": "pnpm forecast-codegen",
5
+ "label": "Acidic CodeGen",
6
+ "command": "pnpm acidic-codegen",
7
7
  "type": "shell",
8
8
  "group": {
9
9
  "kind": "build",
10
10
  "isDefault": true
11
11
  },
12
- "detail": "⚡Storm Software's Forecast Code Generator tool",
12
+ "detail": "⚡Storm Software's Acidic Code Generator tool",
13
13
  "icon": {
14
14
  "color": "terminal.ansiGreen",
15
15
  "id": "server-process"
@@ -32,7 +32,7 @@
32
32
  - [Getting Started](#getting-started)
33
33
  - [Build](#build)
34
34
  - [Development Server](#development-server)
35
- - [Forecast - Model-Driven Development](#forecast---model-driven-development)
35
+ - [Acidic - Model-Driven Development](#acidic---model-driven-development)
36
36
  - [Visual Studio Code Extension](#visual-studio-code-extension)
37
37
  - [Environment Configuration Help](#environment-configuration-help)
38
38
  - [Plug-Ins](#plug-ins)
@@ -94,19 +94,19 @@ Run `pnpm build` to build the project. The build artifacts will be stored in the
94
94
  Run `pnpm serve` for a dev server. Navigate to <http://localhost:4200/>. The app will automatically reload if you change any of the source files.
95
95
  <br /><br />
96
96
 
97
- # Forecast - Model-Driven Development
97
+ # Acidic - Model-Driven Development
98
98
 
99
- In StormStack, ⚡ _forecast_ refers to a collection of applications and libraries that are used to build server-side code from a user-defined model. This functionality all lives in the Storm monorepo's `tools` directory (/tools/forecast).
99
+ In StormStack, ⚡ _acidic_ refers to a collection of applications and libraries that are used to build server-side code from a user-defined model. This functionality all lives in the Storm monorepo's `tools` directory (/tools/acidic).
100
100
 
101
101
  <div align="center"><img src="https://pub-e71cff0f90204755bc910518d63cacf8.r2.dev/storm-generate.bg.png" width="800px" /></div>
102
102
  <br />
103
103
 
104
- More information can be found in the [📓 Documentation](https://forecastjs.com/docs).
104
+ More information can be found in the [📓 Documentation](https://acidicjs.com/docs).
105
105
  <br /><br />
106
106
 
107
107
  ## Visual Studio Code Extension
108
108
 
109
- Forecast has it's own Visual Studio Code extension to support the language model in the IDE. The extension can be found in the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=storm-software.forecast).
109
+ Acidic has it's own Visual Studio Code extension to support the language model in the IDE. The extension can be found in the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=storm-software.acidic).
110
110
 
111
111
  # Environment Configuration Help
112
112
 
@@ -85,7 +85,7 @@ This project follows the [all-contributors](https://github.com/all-contributors/
85
85
  <p><b>Fingerprint:</b> 1BD2 7192 7770 2549 F4C9 F238 E6AD C420 DA5C 4C2D</p>
86
86
  </div>
87
87
 
88
- Storm Software is an open source software development organization and creator of Forecast, StormStack and StormCloud. Our mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languagues.
88
+ Storm Software is an open source software development organization and creator of Acidic, StormStack and StormCloud. Our mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languagues.
89
89
 
90
90
  If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our website!
91
91