@storm-software/workspace-tools 1.62.18 → 1.62.20

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.
Files changed (101) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/declarations.d.ts +129 -0
  3. package/executors.json +35 -0
  4. package/generators.json +53 -0
  5. package/index.js +4 -2410
  6. package/meta.json +1 -1
  7. package/package.json +16 -2
  8. package/src/executors/npm-publish/schema.d.ts +8 -0
  9. package/src/executors/npm-publish/schema.json +26 -0
  10. package/src/executors/tsup/executor.js +4 -2410
  11. package/src/executors/tsup/schema.d.ts +48 -0
  12. package/src/executors/tsup/schema.json +223 -0
  13. package/src/executors/tsup-browser/executor.js +4 -2410
  14. package/src/executors/tsup-browser/schema.d.ts +9 -0
  15. package/src/executors/tsup-browser/schema.json +11 -0
  16. package/src/executors/tsup-neutral/executor.js +4 -2410
  17. package/src/executors/tsup-neutral/schema.d.ts +5 -0
  18. package/src/executors/tsup-neutral/schema.json +11 -0
  19. package/src/executors/tsup-node/executor.js +4 -2410
  20. package/src/executors/tsup-node/schema.d.ts +7 -0
  21. package/src/executors/tsup-node/schema.json +20 -0
  22. package/src/executors/typia/schema.d.ts +6 -0
  23. package/src/executors/typia/schema.json +38 -0
  24. package/src/generators/browser-library/files/README.md +58 -0
  25. package/src/generators/browser-library/files/jest.config.ts +3 -0
  26. package/src/generators/browser-library/files/src/index.ts.template +10 -0
  27. package/src/generators/browser-library/files/tsconfig.spec.json +13 -0
  28. package/src/generators/browser-library/schema.d.ts +22 -0
  29. package/src/generators/browser-library/schema.json +82 -0
  30. package/src/generators/config-schema/schema.d.ts +3 -0
  31. package/src/generators/config-schema/schema.json +20 -0
  32. package/src/generators/init/schema.d.ts +3 -0
  33. package/src/generators/init/schema.json +16 -0
  34. package/src/generators/neutral-library/files/README.md +58 -0
  35. package/src/generators/neutral-library/files/jest.config.ts +3 -0
  36. package/src/generators/neutral-library/files/src/index.ts.template +10 -0
  37. package/src/generators/neutral-library/files/tsconfig.spec.json +13 -0
  38. package/src/generators/neutral-library/schema.d.ts +6 -0
  39. package/src/generators/neutral-library/schema.json +82 -0
  40. package/src/generators/node-library/files/README.md +58 -0
  41. package/src/generators/node-library/files/jest.config.ts +3 -0
  42. package/src/generators/node-library/files/src/index.ts.template +10 -0
  43. package/src/generators/node-library/files/tsconfig.spec.json +13 -0
  44. package/src/generators/node-library/schema.d.ts +22 -0
  45. package/src/generators/node-library/schema.json +82 -0
  46. package/src/generators/preset/files/.all-contributorsrc.template +48 -0
  47. package/src/generators/preset/files/.editorconfig +454 -0
  48. package/src/generators/preset/files/.env.template +43 -0
  49. package/src/generators/preset/files/.gitattributes +52 -0
  50. package/src/generators/preset/files/.github/.nvmrc +1 -0
  51. package/src/generators/preset/files/.github/.whitesource +14 -0
  52. package/src/generators/preset/files/.github/CODEOWNERS +1 -0
  53. package/src/generators/preset/files/.github/CODE_OF_CONDUCT.md +125 -0
  54. package/src/generators/preset/files/.github/CONTRIBUTING.md.template +15 -0
  55. package/src/generators/preset/files/.github/FUNDING.yml +3 -0
  56. package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +102 -0
  57. package/src/generators/preset/files/.github/ISSUE_TEMPLATE/documentation.yml.template +56 -0
  58. package/src/generators/preset/files/.github/ISSUE_TEMPLATE/feature-request.yml.template +60 -0
  59. package/src/generators/preset/files/.github/PULL_REQUEST_TEMPLATE.md.template +39 -0
  60. package/src/generators/preset/files/.github/SECURITY.md +9 -0
  61. package/src/generators/preset/files/.github/actions/setup-workspace/action.yaml +41 -0
  62. package/src/generators/preset/files/.github/codecov.yml +29 -0
  63. package/src/generators/preset/files/.github/labels.yml +78 -0
  64. package/src/generators/preset/files/.github/renovate.json.template +51 -0
  65. package/src/generators/preset/files/.github/stale.yml +50 -0
  66. package/src/generators/preset/files/.github/workflows/build-release.yml.template +94 -0
  67. package/src/generators/preset/files/.github/workflows/code-review.yml +18 -0
  68. package/src/generators/preset/files/.github/workflows/codeql.yml +84 -0
  69. package/src/generators/preset/files/.github/workflows/git-guardian.yml +23 -0
  70. package/src/generators/preset/files/.github/workflows/greetings.yml +24 -0
  71. package/src/generators/preset/files/.github/workflows/labels.yml +31 -0
  72. package/src/generators/preset/files/.github/workflows/lock.yml +26 -0
  73. package/src/generators/preset/files/.log4brains.yml.template +5 -0
  74. package/src/generators/preset/files/.markdownlint.json +28 -0
  75. package/src/generators/preset/files/.verdaccio/config.yml.template +40 -0
  76. package/src/generators/preset/files/.vscode/README.md +32 -0
  77. package/src/generators/preset/files/.vscode/cspell.json +3 -0
  78. package/src/generators/preset/files/.vscode/extensions.json +14 -0
  79. package/src/generators/preset/files/.vscode/launch.json +37 -0
  80. package/src/generators/preset/files/.vscode/settings.json +316 -0
  81. package/src/generators/preset/files/.vscode/tasks.json +19 -0
  82. package/src/generators/preset/files/LICENSE +201 -0
  83. package/src/generators/preset/files/README.md.template +273 -0
  84. package/src/generators/preset/files/assets/diagrams/.gitkeep +0 -0
  85. package/src/generators/preset/files/assets/icons/dark/.gitkeep +0 -0
  86. package/src/generators/preset/files/assets/icons/light/.gitkeep +0 -0
  87. package/src/generators/preset/files/assets/logos/.gitkeep +0 -0
  88. package/src/generators/preset/files/biome.json +4 -0
  89. package/src/generators/preset/files/docs/api-reference/.gitkeep +0 -0
  90. package/src/generators/preset/files/docs/readme-templates/README.footer.md.template +94 -0
  91. package/src/generators/preset/files/docs/readme-templates/README.header.md.template +17 -0
  92. package/src/generators/preset/files/lefthook.json +6 -0
  93. package/src/generators/preset/files/nx.json +3 -0
  94. package/src/generators/preset/files/pnpm-workspace.yaml +6 -0
  95. package/src/generators/preset/files/socket.yaml +20 -0
  96. package/src/generators/preset/files/tsconfig.base.json.template +11 -0
  97. package/src/generators/preset/schema.d.ts +14 -0
  98. package/src/generators/preset/schema.json +103 -0
  99. package/src/generators/release-version/schema.d.ts +3 -0
  100. package/src/generators/release-version/schema.json +66 -0
  101. package/src/utils/index.js +4 -2410
@@ -0,0 +1,273 @@
1
+ <div align="center"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-banner.png" width="100%" alt="Storm Software" /></div>
2
+
3
+ <br />
4
+ <div align="center">
5
+ <a href="https://stormsoftware.org" target="_blank">Website</a> | <a href="https://stormsoftware.org/contact" target="_blank">Contact</a> | <a href="https://github.com/<%= namespace %>/<%= name %>" target="_blank">Repository</a> | <a href="https://github.com/<%= namespace %>/<%= name %>/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a> | <a href="https://github.com/<%= namespace %>/<%= name %>/issues/new?assignees=&labels=enhancement&template=feature-request.yml&title=Feature Request%3A+">Request a Feature</a> | <a href="https://github.com/<%= namespace %>/<%= name %>/issues/new?assignees=&labels=documentation&template=documentation.yml&title=Documentation Request%3A+">Request Documentation</a> | <a href="https://github.com/<%= namespace %>/<%= name %>/discussions">Ask a Question</a>
6
+ </div>
7
+
8
+ <br />
9
+ <h1><%= name %></h1>
10
+ <%= description %>
11
+ <br /><br />
12
+ ⚡<b>Storm Workspaces</b> are built using <a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools for monorepos, which helps you develop like Google, Facebook, and Microsoft. Building on top of Nx, the Open System provides a set of tools and patterns that help you scale your monorepo to many teams while keeping the codebase maintainable.
13
+
14
+ <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
15
+
16
+ [![github](https://img.shields.io/github/package-json/v/<%= namespace %>/<%= name %>?style=for-the-badge&color=1fb2a6)](https://github.com/<%= namespace %>/<%= name %>)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/<%= namespace %>/<%= name %>/build-release.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
17
+
18
+ <h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
19
+
20
+ <!--#if GitHubActions-->
21
+
22
+ [![GitHub Actions Build History](https://buildstats.info/github/chart/<%= namespace %>/<%= name %>?branch=main&includeBuildsFromPullRequest=false)](https://github.com/<%= namespace %>/<%= name %>/actions)
23
+
24
+ <!--#endif-->
25
+
26
+ <!-- START doctoc generated TOC please keep comment here to allow auto update -->
27
+ <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
28
+
29
+ ## Table of Contents
30
+
31
+ - [Quick Features](#quick-features)
32
+ - [Tech Stack](#tech-stack)
33
+ - [Getting Started](#getting-started)
34
+ - [Build](#build)
35
+ - [Development Server](#development-server)
36
+ - [Acidic - Model-Driven Development](#acidic---model-driven-development)
37
+ - [Visual Studio Code Extension](#visual-studio-code-extension)
38
+ - [Environment Configuration Help](#environment-configuration-help)
39
+ - [Plug-Ins](#plug-ins)
40
+ - [Generate an Application](#generate-an-application)
41
+ - [Generate a Library](#generate-a-library)
42
+ - [Code Scaffolding](#code-scaffolding)
43
+ - [Testing](#testing)
44
+ - [Running Unit Tests](#running-unit-tests)
45
+ - [Running End-to-End Tests](#running-end-to-end-tests)
46
+ - [Understand your workspace](#understand-your-workspace)
47
+ - [☁ Nx Cloud](#-nx-cloud)
48
+ - [Distributed Computation Caching \& Distributed Task Execution](#distributed-computation-caching--distributed-task-execution)
49
+ - [Roadmap](#roadmap)
50
+ - [Contributing](#contributing)
51
+ - [Support](#support)
52
+ - [License](#license)
53
+ - [Contributors ✨](#contributors-)
54
+
55
+ <!-- END doctoc generated TOC please keep comment here to allow auto update -->
56
+
57
+ <br />
58
+
59
+ # Quick Features
60
+
61
+ The following are some of the features/publishable code that are included in this repository:
62
+
63
+ - Transport/protocol/backend agnostic data fetching (REST, GraphQL, promises, whatever!)
64
+ - Auto Caching + Refetching (stale-while-revalidate, Window Refocus, Polling/Realtime)
65
+ - Parallel + Dependent Queries
66
+ - Mutations + Reactive Query Refetching
67
+ - Multi-layer Cache + Automatic Garbage Collection
68
+ - Paginated + Cursor-based Queries
69
+ - Load-More + Infinite Scroll Queries w/ Scroll Recovery
70
+ - Request Cancellation
71
+ - React Suspense + Fetch-As-You-Render Query Prefetching
72
+ - Dedicated Devtools
73
+
74
+ ## Tech Stack
75
+
76
+ <div>
77
+ <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/typescript/typescript-original.svg" alt="TypeScript" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/codecov/codecov-plain.svg" alt="Codecov" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/apachekafka/apachekafka-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/amazonwebservices/amazonwebservices-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-plain.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/github/github-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/canva/canva-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/electron/electron-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/docker/docker-plain.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/eslint/eslint-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/figma/figma-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/graphql/graphql-plain.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/jira/jira-plain.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/markdown/markdown-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/mongodb/mongodb-plain.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/mysql/mysql-plain.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/nextjs/nextjs-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/nodejs/nodejs-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/postgresql/postgresql-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/storybook/storybook-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/redis/redis-plain.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/prometheus/prometheus-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/sqlite/sqlite-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/react/react-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/tailwindcss/tailwindcss-plain.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/threejs/threejs-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/vscode/vscode-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/android/android-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/apple/apple-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/bash/bash-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/blender/blender-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/jamstack/jamstack-original.svg" alt="Kafka" width="40" height="40"/>&nbsp;<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/npm/npm-original-wordmark.svg" alt="Kafka" width="40" height="40"/>&nbsp;
78
+ </div>
79
+
80
+ **Note:** The above list of technologies is far from exhaustive. It is just meant to serve as a short list of _some_ of the technologies that are used in this repository.
81
+ <br /><br />
82
+
83
+ # Getting Started
84
+
85
+ Once the code is pulled locally, open a command prompt and run `pnpm install` in the root repo directory (/storm-ops).
86
+
87
+ More information can be found in the [Open System documentation](https://storm-software.github.io/storm-ops/docs/getting-started/installation).
88
+
89
+ ## Build
90
+
91
+ Run `pnpm build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
92
+
93
+ ## Development Server
94
+
95
+ 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.
96
+ <br /><br />
97
+
98
+ # Acidic - Model-Driven Development
99
+
100
+ 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).
101
+
102
+ <div align="center"><img src="https://pub-e71cff0f90204755bc910518d63cacf8.r2.dev/storm-generate.bg.png" width="800px" /></div>
103
+ <br />
104
+
105
+ More information can be found in the [📓 Documentation](https://acidicjs.com/docs).
106
+ <br /><br />
107
+
108
+ ## Visual Studio Code Extension
109
+
110
+ 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).
111
+
112
+ # Environment Configuration Help
113
+
114
+ If you run into any issues while trying to run any of the above steps, please reach out to Patrick Sullivan. See the [Support](#support) section for more information.
115
+
116
+ ## Plug-Ins
117
+
118
+ Some of the plug-ins used by this repository are:
119
+
120
+ - [@nx/next](https://nx.dev/packages/next)
121
+ - [@nx/react](https://nx.dev/packages/react)
122
+ - [@nx/lint](https://nx.dev/linter/overview)
123
+ - [@nx/js](https://nx.dev/js/overview)
124
+ - [@nx/node](https://nodejs.org)
125
+ - [@nx/web](https://nx.dev/web/overview)
126
+ - [@nx/storybook](https://nx.dev/storybook/overview-react)
127
+ - [@nx/cypress](https://nx.dev/packages/cypress)
128
+ - [@nx/jest](https://nx.dev/packages/jest)
129
+ - And more...
130
+
131
+ ## Generate an Application
132
+
133
+ Run `nx g @storm-software/workspace:app my-app` to generate an application.
134
+
135
+ > You can use any of the plugins above to generate applications as well.
136
+
137
+ When using Nx, you can create multiple applications and libraries in the same workspace.
138
+
139
+ ## Generate a Library
140
+
141
+ Run `nx g @storm-software/workspace:lib my-lib` to generate a library.
142
+
143
+ > You can also use any of the plugins above to generate libraries as well.
144
+
145
+ Libraries are shareable across libraries and applications. They can be imported from `@storm-ops/my-lib`.
146
+
147
+ ## Code Scaffolding
148
+
149
+ Run `nx g @nx/react:component my-component --project=storm-ops` to generate a new component.
150
+ <br /><br />
151
+
152
+ # Testing
153
+
154
+ Open System uses [Jest](https://jestjs.io/) for unit testing and [Cypress](https://www.cypress.io/) for end-to-end testing.
155
+
156
+ ## Running Unit Tests
157
+
158
+ Run `pnpm test` to execute the unit tests via [Jest](https://jestjs.io).
159
+
160
+ Run `pnpm affected:test` to execute the unit tests affected by a change.
161
+
162
+ ## Running End-to-End Tests
163
+
164
+ Run `pnpm e2e` to execute the end-to-end tests via [Cypress](https://www.cypress.io).
165
+
166
+ Run `pnpm affected:e2e` to execute the end-to-end tests affected by a change.
167
+
168
+ ## Understand your workspace
169
+
170
+ Run `pnpm graph` to see a diagram of the dependencies of the Open System projects.
171
+ <br /><br />
172
+
173
+ # ☁ Nx Cloud
174
+
175
+ Nx caches the output of any previously run command such as testing and building, so it can replay the cached results instead of rerunning it. Nx Cloud allows you to share the computation cache across everyone in your team and CI.
176
+
177
+ <p align="center"><img src="https://pub-4661138852db4e5da99a6660fbf9b633.r2.dev/Nx Cloud - Dashboard.png" width="100%" alt="Nx Cloud - Dashboard" /></p>
178
+
179
+ ## Distributed Computation Caching & Distributed Task Execution
180
+
181
+ Nx Cloud pairs with Nx in order to enable you to build and test code more rapidly, by up to 10 times. Even teams that are new to Nx can connect to Nx Cloud and start saving time instantly.
182
+
183
+ Teams using Nx gain the advantage of building full-stack applications with their preferred framework alongside Nx’s advanced code generation and project dependency graph, plus a unified experience for both frontend and backend developers.
184
+
185
+ Visit [Nx Cloud](https://nx.app/) to learn more.
186
+ <br /><br />
187
+
188
+ # Roadmap
189
+
190
+ See the [open issues](https://github.com/<%= namespace %>/<%= name %>/issues) for a list of proposed features (and known issues).
191
+
192
+ - [Top Feature Requests](https://github.com/<%= namespace %>/<%= name %>/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction)
193
+ - [Top Bugs](https://github.com/<%= namespace %>/<%= name %>/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction)
194
+ - [Newest Bugs](https://github.com/<%= namespace %>/<%= name %>/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
195
+ <br /><br />
196
+
197
+ # Contributing
198
+
199
+ First off, thanks for taking the time to contribute! Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are **greatly appreciated**.
200
+
201
+ Please try to create bug reports that are:
202
+
203
+ - _Reproducible._ Include steps to reproduce the problem.
204
+ - _Specific._ Include as much detail as possible: which version, what environment, etc.
205
+ - _Unique._ Do not duplicate existing opened issues.
206
+ - _Scoped to a Single Bug._ One bug per report.
207
+
208
+ Please adhere to this project's [code of conduct](.github/CODE_OF_CONDUCT.md).
209
+
210
+ You can use [markdownlint-cli](https://github.com/<%= namespace %>/<%= name %>/markdownlint-cli) to check for common markdown style inconsistency.
211
+ <br /><br />
212
+
213
+ # Support
214
+
215
+ Reach out to the maintainer at one of the following places:
216
+
217
+ - [Contact](https://stormsoftware.org/contact)
218
+ - [GitHub discussions](https://github.com/<%= namespace %>/<%= name %>/discussions)
219
+ - <contact@stormsoftware.org>
220
+
221
+ # License
222
+
223
+ This project is licensed under the **Apache License 2.0**. Feel free to edit and distribute this template as you like. If you have any specific questions, please reach out to the Storm Software development team.
224
+
225
+ See [LICENSE](LICENSE) for more information.
226
+
227
+ # Contributors ✨
228
+
229
+ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
230
+
231
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
232
+ <!-- prettier-ignore-start -->
233
+ <!-- markdownlint-disable -->
234
+ <table>
235
+ <tbody>
236
+ <tr>
237
+ <td align="center" valign="top" width="14.28%"><a href="http://www.sullypat.com/"><img src="https://avatars.githubusercontent.com/u/99053093?v=4?s=100" width="100px;" alt="Patrick Sullivan"/><br /><sub><b>Patrick Sullivan</b></sub></a><br /><a href="#design-sullivanpj" title="Design">🎨</a> <a href="https://github.com/<%= namespace %>/<%= name %>/commits?author=sullivanpj" title="Code">💻</a> <a href="#tool-sullivanpj" title="Tools">🔧</a> <a href="https://github.com/<%= namespace %>/<%= name %>/commits?author=sullivanpj" title="Documentation">📖</a> <a href="https://github.com/<%= namespace %>/<%= name %>/commits?author=sullivanpj" title="Tests">⚠️</a></td>
238
+ <td align="center" valign="top" width="14.28%"><a href="https://tylerbenning.com/"><img src="https://avatars.githubusercontent.com/u/7265547?v=4?s=100" width="100px;" alt="Tyler Benning"/><br /><sub><b>Tyler Benning</b></sub></a><br /><a href="#design-tbenning" title="Design">🎨</a></td>
239
+ <td align="center" valign="top" width="14.28%"><a href="http://stormsoftware.org"><img src="https://avatars.githubusercontent.com/u/149802440?v=4?s=100" width="100px;" alt="Stormie"/><br /><sub><b>Stormie</b></sub></a><br /><a href="#maintenance-stormie-bot" title="Maintenance">🚧</a></td>
240
+ </tr>
241
+ </tbody>
242
+ <tfoot>
243
+ <tr>
244
+ <td align="center" size="13px" colspan="7">
245
+ <img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
246
+ <a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
247
+ </img>
248
+ </td>
249
+ </tr>
250
+ </tfoot>
251
+ </table>
252
+
253
+ <!-- markdownlint-restore -->
254
+ <!-- prettier-ignore-end -->
255
+
256
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
257
+
258
+ This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
259
+
260
+ <h1 align="center"></h1>
261
+ <br />
262
+ <div align="center">
263
+ <img src="https://pub-e71cff0f90204755bc910518d63cacf8.r2.dev/logo-opengraph.gif" width="100%" alt="Storm Software" />
264
+ </div>
265
+ <div align="center">
266
+ <a href="https://stormsoftware.org" target="_blank">Website</a> | <a href="https://stormsoftware.org/contact" target="_blank">Contact</a> | <a href="https://linkedin.com/in/patrick-sullivan-865526b0" target="_blank">LinkedIn</a> | <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> | <a href="https://github.com/sullivanpj" target="_blank">GitHub</a> | <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
267
+ </div>
268
+
269
+ <div align="center">
270
+ <p><b>Fingerprint:</b> 1BD2 7192 7770 2549 F4C9 F238 E6AD C420 DA5C 4C2D</p>
271
+ </div>
272
+
273
+ <h2 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h2><br /><br />
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
3
+ "extends": ["./node_modules/@storm-software/linting-tools/biome/biome.json"]
4
+ }
@@ -0,0 +1,94 @@
1
+ ## Storm Workspaces
2
+
3
+ Storm workspaces are built using <a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools for monorepos, which helps you develop like Google, Facebook, and Microsoft. Building on top of Nx, the Open System provides a set of tools and patterns that help you scale your monorepo to many teams while keeping the codebase maintainable.
4
+
5
+ ## Roadmap
6
+
7
+ See the [open issues](https://github.com/<%= organization %>/<%= name %>/issues) for a list of proposed features (and known issues).
8
+
9
+ - [Top Feature Requests](https://github.com/<%= organization %>/<%= name %>/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction)
10
+ - [Top Bugs](https://github.com/<%= organization %>/<%= name %>/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction)
11
+ - [Newest Bugs](https://github.com/<%= organization %>/<%= name %>/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
12
+
13
+ ## Support
14
+
15
+ Reach out to the maintainer at one of the following places:
16
+
17
+ - [Contact](https://stormsoftware.org/contact)
18
+ - [GitHub discussions](https://github.com/<%= organization %>/<%= name %>/discussions)
19
+ - <support@stormsoftware.org>
20
+
21
+ ## License
22
+
23
+ This project is licensed under the **Apache License 2.0**. Feel free to edit and distribute this template as you like.
24
+
25
+ See [LICENSE](LICENSE) for more information.
26
+
27
+ ## Changelog
28
+
29
+ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Every release, along with the migration instructions, is documented in the [CHANGELOG](CHANGELOG.md) file
30
+
31
+ ## Contributing
32
+
33
+ First off, thanks for taking the time to contribute! Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are **greatly appreciated**.
34
+
35
+ Please try to create bug reports that are:
36
+
37
+ - _Reproducible._ Include steps to reproduce the problem.
38
+ - _Specific._ Include as much detail as possible: which version, what environment, etc.
39
+ - _Unique._ Do not duplicate existing opened issues.
40
+ - _Scoped to a Single Bug._ One bug per report.
41
+
42
+ Please adhere to this project's [code of conduct](.github/CODE_OF_CONDUCT.md).
43
+
44
+ You can use [markdownlint-cli](https://github.com/<%= organization %>/<%= name %>/markdownlint-cli) to check for common markdown style inconsistency.
45
+
46
+ ## Contributors
47
+
48
+ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
49
+
50
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
51
+
52
+ <table>
53
+ <tbody>
54
+ <tr>
55
+ <td align="center" valign="top" width="14.28%"><a href="http://www.sullypat.com/"><img src="https://avatars.githubusercontent.com/u/99053093?v=4?s=100" width="100px;" alt="Patrick Sullivan"/><br /><sub><b>Patrick Sullivan</b></sub></a><br /><a href="#design-sullivanpj" title="Design">🎨</a> <a href="https://github.com/storm-software/storm-ops/commits?author=sullivanpj" title="Code">💻</a> <a href="#tool-sullivanpj" title="Tools">🔧</a> <a href="https://github.com/storm-software/storm-ops/commits?author=sullivanpj" title="Documentation">📖</a> <a href="https://github.com/storm-software/storm-ops/commits?author=sullivanpj" title="Tests">⚠️</a></td>
56
+ <td align="center" valign="top" width="14.28%"><a href="https://tylerbenning.com/"><img src="https://avatars.githubusercontent.com/u/7265547?v=4?s=100" width="100px;" alt="Tyler Benning"/><br /><sub><b>Tyler Benning</b></sub></a><br /><a href="#design-tbenning" title="Design">🎨</a></td>
57
+ <td align="center" valign="top" width="14.28%"><a href="http://stormsoftware.org"><img src="https://avatars.githubusercontent.com/u/149802440?v=4?s=100" width="100px;" alt="Stormie"/><br /><sub><b>Stormie</b></sub></a><br /><a href="#maintenance-stormie-bot" title="Maintenance">🚧</a></td>
58
+ </tr>
59
+ </tbody>
60
+ <tfoot>
61
+ <tr>
62
+ <td align="center" size="13px" colspan="7">
63
+ <img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
64
+ <a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
65
+ </img>
66
+ </td>
67
+ </tr>
68
+ </tfoot>
69
+ </table>
70
+
71
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
72
+
73
+ This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
74
+
75
+ <br />
76
+ <br />
77
+ <div align="center">
78
+ <img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-banner.png" width="100%" altText="Storm Software" />
79
+ </div>
80
+ <br />
81
+
82
+ <div align="center">
83
+ <a href="https://stormsoftware.org" target="_blank">Website</a> | <a href="https://stormsoftware.org/contact" target="_blank">Contact</a> | <a href="https://linkedin.com/in/patrick-sullivan-865526b0" target="_blank">LinkedIn</a> | <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> | <a href="https://github.com/storm-software" target="_blank">GitHub</a> | <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
84
+ </div>
85
+
86
+ <div align="center">
87
+ <p><b>Fingerprint:</b> 1BD2 7192 7770 2549 F4C9 F238 E6AD C420 DA5C 4C2D</p>
88
+ </div>
89
+
90
+ 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.
91
+
92
+ 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!
93
+
94
+ <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br /><br />
@@ -0,0 +1,17 @@
1
+ <div align="center"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-banner.png" width="100%" altText="Storm Software" /></div>
2
+
3
+ <br />
4
+ <div align="center">
5
+ <a href="https://stormsoftware.org" target="_blank">Website</a> | <a href="https://stormsoftware.org/contact" target="_blank">Contact</a> | <a href="https://github.com/<%= organization %>/<%= name %>" target="_blank">Repository</a> | <a href="https://stormstack.github.io/stormstack/" target="_blank">Documentation</a> | <a href="https://github.com/<%= organization %>/<%= name %>/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a> | <a href="https://github.com/<%= organization %>/<%= name %>/issues/new?assignees=&labels=enhancement&template=feature-request.yml&title=Feature Request%3A+">Request a Feature</a> | <a href="https://github.com/<%= organization %>/<%= name %>/issues/new?assignees=&labels=documentation&template=documentation.yml&title=Documentation Request%3A+">Request Documentation</a> | <a href="https://github.com/<%= organization %>/<%= name %>/discussions">Ask a Question</a>
6
+ </div>
7
+
8
+ <br />
9
+ This package is part of the <b>⚡<%= name %></b> monorepo. The <%= name %> packages include CLI utility applications, tools, and various libraries used to create modern, scalable web applications.
10
+ <br />
11
+
12
+ <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
13
+
14
+ [![Version](https://img.shields.io/badge/version-<!-- VERSION -->-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
15
+ [![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
16
+
17
+ <h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
@@ -0,0 +1,6 @@
1
+ {
2
+ "remote": {
3
+ "git_url": "git@github.com:storm-software/storm-ops",
4
+ "config": "packages/git-tools/src/lefthook/lefthook.yml"
5
+ }
6
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "@storm-software/workspace-tools/config/nx.json"
3
+ }
@@ -0,0 +1,6 @@
1
+ packages:
2
+ - "tools/**"
3
+ - "packages/**"
4
+ - "libs/**"
5
+ - "apps/**"
6
+ - "docs/**"
@@ -0,0 +1,20 @@
1
+ # top level version field is required
2
+ version: 2
3
+
4
+ triggerPaths:
5
+ - "packages/*/package.json"
6
+ - "package.json"
7
+ - "pnpm-lock.yaml"
8
+ - "pnpm-workspace.yaml"
9
+ - "apps/*/package.json"
10
+ - "libs/*/package.json"
11
+
12
+ projectIgnorePaths:
13
+ - ".github/"
14
+ - ".vscode/"
15
+ - ".verdaccio/"
16
+ - ".nx/"
17
+ - "benchmarks/"
18
+ - "docs/"
19
+ - "examples/"
20
+ - "test/"
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "@storm-software/linting-tools/tsconfig/tsconfig.root.json",
4
+ "display": "Storm Software - <%= name %>",
5
+ "compilerOptions": {
6
+ "rootDir": ".",
7
+ "baseUrl": ".",
8
+ "paths": {}
9
+ },
10
+ "references": []
11
+ }
@@ -0,0 +1,14 @@
1
+ export type NxClientMode = "light" | "dark";
2
+ export type PackageManager = "npm" | "yarn" | "pnpm";
3
+
4
+ export interface PresetGeneratorSchema {
5
+ name: string;
6
+ organization: string;
7
+ includeApps: boolean;
8
+ namespace?: string;
9
+ description?: string;
10
+ repositoryUrl?: string;
11
+ nxCloud: "skip";
12
+ mode: NxClientMode;
13
+ packageManager: PackageManager;
14
+ }
@@ -0,0 +1,103 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "preset",
4
+ "title": "Workspace Preset",
5
+ "description": "Create a Storm workspace with all of the required files and recommended packages installed.",
6
+ "type": "object",
7
+ "example": [
8
+ {
9
+ "command": "nx g @storm-software/workspace-tools:preset --name 'example-repo'",
10
+ "description": "Generate a storm workspace with: \n- name: example-repo \n- namespace: storm-software \n- organization: storm-software \n- repositoryUrl: <https://github.com/storm-software/example-repo>"
11
+ },
12
+
13
+ {
14
+ "command": "nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example'",
15
+ "description": "Generate a storm workspace with: \n- name: example-repo \n- namespace: example \n- repositoryUrl: <https://github.com/storm-software/example-repo>"
16
+ },
17
+ {
18
+ "command": "nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example' --organization 'example-org' --description 'An example workspace'",
19
+ "description": "Generate a storm workspace with: \n- name: example-repo \n- namespace: example \n- organization: example-org \n- description: An example workspace \n- repositoryUrl: <https://github.com/example-org/example-repo>"
20
+ }
21
+ ],
22
+ "properties": {
23
+ "name": {
24
+ "type": "string",
25
+ "description": "The name of the workspace root.",
26
+ "$default": {
27
+ "$source": "argv",
28
+ "index": 0
29
+ },
30
+ "x-prompt": "What name would you like to use?"
31
+ },
32
+ "organization": {
33
+ "type": "string",
34
+ "description": "The organization that owns the workspace.",
35
+ "default": "storm-software",
36
+ "$default": {
37
+ "$source": "argv",
38
+ "index": 1
39
+ },
40
+ "x-prompt": "What organization owns this repository?"
41
+ },
42
+ "namespace": {
43
+ "type": "string",
44
+ "description": "The npm scope used for the workspace. Defaults to the organization name.",
45
+ "$default": {
46
+ "$source": "argv",
47
+ "index": 2
48
+ },
49
+ "x-prompt": "What namespace (npm scope) would you like to use? Defaults to the organization name."
50
+ },
51
+ "includeApps": {
52
+ "type": "boolean",
53
+ "description": "Should a separate `apps` folder be created for this workspace (if Yes: `apps` and `libs` folders will be added, if No: `packages` folders will be added)?",
54
+ "default": false,
55
+ "$default": {
56
+ "$source": "argv",
57
+ "index": 3
58
+ },
59
+ "x-prompt": "Is the workspace a purely package based repository (one large packages folder) or does it include apps (split between apps and libs folders)?"
60
+ },
61
+ "description": {
62
+ "type": "string",
63
+ "description": "The description of the workspace to use in the package.json and README.md files.",
64
+ "$default": {
65
+ "$source": "argv",
66
+ "index": 4
67
+ },
68
+ "x-prompt": "Provide a description of the workspace to use in the package.json and README.md files."
69
+ },
70
+ "repositoryUrl": {
71
+ "type": "string",
72
+ "description": "The URL of the workspace in GitHub. Defaults to <https://github.com/{organization}/{name}>",
73
+ "$default": {
74
+ "$source": "argv",
75
+ "index": 5
76
+ },
77
+ "x-prompt": "What is the workspace's GitHub repository URL?"
78
+ },
79
+ "nxCloud": {
80
+ "type": "boolean",
81
+ "description": "Should distributed caching with Nx Cloud be enabled for the workspace?",
82
+ "default": false,
83
+ "x-prompt": "Should distributed caching with Nx Cloud be enabled for the workspace?",
84
+ "hidden": true
85
+ },
86
+ "mode": {
87
+ "type": "string",
88
+ "description": "Which client mode should be used for the Nx Task Runner?",
89
+ "default": "dark",
90
+ "enum": ["light", "dark"],
91
+ "x-prompt": "Which client mode should be used for the Nx Task Runner?"
92
+ },
93
+ "packageManager": {
94
+ "type": "string",
95
+ "description": "What package manager is used for the workspace?",
96
+ "enum": ["npm", "yarn", "pnpm"],
97
+ "default": "pnpm",
98
+ "x-prompt": "What package manager is used for the workspace?",
99
+ "hidden": true
100
+ }
101
+ },
102
+ "required": ["name", "organization", "includeApps", "mode"]
103
+ }
@@ -0,0 +1,3 @@
1
+ import type { ReleaseVersionGeneratorSchema as NxReleaseVersionGeneratorSchema } from "nx/src/command-line/release/version.js";
2
+
3
+ export interface ReleaseVersionGeneratorSchema extends NxReleaseVersionGeneratorSchema {}