Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@storm-software/workspace-tools
Advanced tools
⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.
[!IMPORTANT] 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.
A package containing tools for managing a Storm workspace. It includes various Nx generators and executors for common development tasks.
This library was generated with Nx.
Using pnpm:
pnpm add -D @storm-software/workspace-tools
npm install -D @storm-software/workspace-tools
yarn add -D @storm-software/workspace-tools
The following executors are available in this package to invoke common tasks for the workspace's projects:
Run a build on the project using ESBuild with a patched tsup configuration
This executor can be used by executing the following in a command line utility:
nx run my-project:tsup
Please note: The tsup executor should be included in the desired projects's project.json
file.All required options must be included in the options
property of the json.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
entry | string | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
outputPath | string | The output path of the generated files. | "dist/{projectRoot}" |
tsConfig * | string | The path to the `tsconfig.json` file. | "{projectRoot}/tsconfig.json" |
additionalEntryPoints | string[] | List of additional entry points. | [] |
external | string[] | Mark one or more module as external. Can use * wildcards, such as *.png. | |
bundle | boolean | Whether to bundle the main entry point and additional entry points. Set to false to keep individual output files. | true |
watch | boolean | Enable re-building when files change. | |
assets | array | List of static assets. | [] |
clean | boolean | Remove previous output before build. | true |
includeSrc | boolean | Should the source files be added to the distribution folder in an `src` directory. | |
metafile | boolean | Should a meta file be created for the build package | true |
emitOnAll | boolean | Should each file contained in the package be emitted individually. | |
generatePackageJson | boolean | Should a package.json file be generated in the output folder or should the existing one be copied in. | true |
splitting | boolean | Should the build process preform *code-splitting*? | true |
treeshake | boolean | Should the build process *tree-shake* to remove unused code? | true |
format | string[] | The output format for the generated JavaScript files. There are currently three possible values that can be configured: iife, cjs, and esm. | [] |
debug | boolean | Should output be unminified with source mappings. | |
platform * | "browser" | "neutral" | "node" | "worker" | Platform target for outputs. | "neutral" |
banner * | string | A short heading added to the top of each typescript file added in the output folder's `src` directory. | "This code was developed by Storm Software (https://stormsoftware.com) and is licensed under the Apache License 2.0." |
minify | boolean | Should the build process minify the output files? | |
verbose | boolean | Should write extra log outputs with details from the executor. | |
skipNativeModulesPlugin | boolean | Should we skip adding the Native Node Modules ESBuild plugin. | |
useJsxModule | boolean | Should the build process use the `jsx` module for JSX support? | |
shims | boolean | Should the build process add shims for node.js modules that are not available in the browser? | |
define | object | Define global constants that can be used in the source code. The value will be converted into a stringified JSON. | |
env | object | Define environment variables that can be used in the source code. The value will be converted into a stringified JSON. | |
apiReport | boolean | Should API Extractor generate an API Report file. | |
docModel | boolean | Should API Extractor generate an Doc Model markdown file. | |
tsdocMetadata | boolean | Should API Extractor generate an TSDoc Metadata file. | |
options | object | Additional options to pass to tsup. See https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e. | |
plugins | object[] | List of ESBuild plugins to use during processing | [] |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Runs a neutral platform TypeScript build
This executor can be used by executing the following in a command line utility:
nx run my-project:tsup-neutral
Please note: The tsup-neutral executor should be included in the desired projects's project.json
file.
Runs a node platform TypeScript build
This executor can be used by executing the following in a command line utility:
nx run my-project:tsup-node
Please note: The tsup-node executor should be included in the desired projects's project.json
file.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
transports | string[] | [] |
Runs a browser platform TypeScript build
This executor can be used by executing the following in a command line utility:
nx run my-project:tsup-browser
Please note: The tsup-browser executor should be included in the desired projects's project.json
file.
Run the Typia generator to create runtime type validators
This executor can be used by executing the following in a command line utility:
nx run my-project:typia
Please note: The typia executor should be included in the desired projects's project.json
file.All required options must be included in the options
property of the json.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
entryPath * | string | The path of the typescript files using `typia`. | "{sourceRoot}" |
outputPath * | string | The output path of the generated files. | "{sourceRoot}/generated/typia" |
tsConfig * | string | The path to the `tsconfig.json` file. | "{projectRoot}/tsconfig.json" |
clean | boolean | Remove previous output before build. | true |
Please note: Option names followed by * above are required, and must be provided to run the executor.
An executor used by Storm Software to run the Rolldown build process
This executor can be used by executing the following in a command line utility:
nx run my-project:rolldown
Please note: The rolldown executor should be included in the desired projects's project.json
file.All required options must be included in the options
property of the json.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
entry | string | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
outputPath | string | The output path of the generated files. | "dist/{projectRoot}" |
tsConfig * | string | The path to the `tsconfig.json` file. | "{projectRoot}/tsconfig.json" |
additionalEntryPoints | string[] | List of additional entry points. | [] |
watch | boolean | Enable re-building when files change. | |
assets | array | List of static assets. | [] |
clean | boolean | Remove previous output before build. | true |
includeSrc | boolean | Should the source files be added to the distribution folder in an `src` directory. | |
generatePackageJson | boolean | Should a package.json file be generated in the output folder or should the existing one be copied in. | true |
debug | boolean | Should output be unminified with source mappings. | |
platform * | "browser" | "neutral" | "node" | "worker" | Platform target for outputs. | "neutral" |
banner * | string | A short heading added to the top of each typescript file added in the output folder's `src` directory. | "This code was developed by Storm Software (https://stormsoftware.com) and is licensed under the Apache License 2.0." |
minify | boolean | Should the build process minify the output files? | |
verbose | boolean | Should write extra log outputs with details from the executor. | |
plugins | object[] | List of Rollup plugins to use during processing | [] |
Please note: Option names followed by * above are required, and must be provided to run the executor.
An executor used by Storm Software to run the Unbuild build process
This executor can be used by executing the following in a command line utility:
nx run my-project:unbuild
Please note: The unbuild executor should be included in the desired projects's project.json
file.All required options must be included in the options
property of the json.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
entry | string | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
outputPath | string | The output path of the generated files. | "dist/{projectRoot}" |
tsConfig * | string | The path to the `tsconfig.json` file. | "{projectRoot}/tsconfig.json" |
additionalEntryPoints | string[] | List of additional entry points. | [] |
tsLibs | string[] | The `lib` TypeScript Compiler Options parameter. | [] |
watch | boolean | Enable re-building when files change. | |
assets | array | List of static assets. | [] |
clean | boolean | Remove previous output before build. | true |
generatePackageJson | boolean | Should the package.json file be generated or copied directly into the output folder (if false the file will be copied directly). | true |
includeSrc | boolean | Should the source files be added to the distribution folder in an `src` directory. | |
debug | boolean | Should output be unminified with source mappings. | |
minify | boolean | Should the build process minify the output files? | |
verbose | boolean | Should write extra log outputs with details from the executor. | |
plugins | object[] | List of Rollup plugins to use during processing | [] |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Remove configuration files, fields, and scripts for development before publishing package. This tool is inspired by the clean-publish package
This executor can be used by executing the following in a command line utility:
nx run my-project:clean-package
Please note: The clean-package executor should be included in the desired projects's project.json
file.All required options must be included in the options
property of the json.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
outputPath * | string | The output path of the generated files. | "dist/{projectRoot}" |
packageJsonPath | string | The path to the package.json file, relative to the workspace root. | |
cleanReadMe * | boolean | Should API Extractor generate an TSDoc Metadata file. | true |
cleanComments * | boolean | Should API Extractor generate an TSDoc Metadata file. | true |
ignoredFiles | string | List of ESBuild plugins to use during processing | |
fields | string | List of ESBuild plugins to use during processing |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Run a size-limit performance test on the project
This executor can be used by executing the following in a command line utility:
nx run my-project:size-limit
Please note: The size-limit executor should be included in the desired projects's project.json
file.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
entry | string | The path to the entry file, relative to project. |
Publish a package to the NPM registry - DO NOT INVOKE DIRECTLY WITH `nx run`. Use `nx release publish` instead.
This executor can be used by executing the following in a command line utility:
nx run my-project:npm-publish
Please note: The npm-publish executor should be included in the desired projects's project.json
file.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
packageRoot | string | The root directory of the directory (containing a manifest file at its root) to publish. Defaults to the project root. | |
registry | string | The NPM registry URL to publish the package to. | |
tag | string | The distribution tag to apply to the published package. | |
dryRun | boolean | Whether to run the command without actually publishing the package to the registry. |
Publish a package to the crates.io registry - DO NOT INVOKE DIRECTLY WITH `nx run`. Use `nx release publish` instead.
This executor can be used by executing the following in a command line utility:
nx run my-project:cargo-publish
Please note: The cargo-publish executor should be included in the desired projects's project.json
file.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
registry | string | The Cargo registry URL to publish the package to. | |
packageRoot | string | The root directory of the directory (containing a manifest file at its root) to publish. Defaults to the project root. | |
dryRun | boolean | Whether to run the command without actually publishing the package to the registry. |
Run a Rust build on the project using Cargo
This executor can be used by executing the following in a command line utility:
nx run my-project:cargo-build
Please note: The cargo-build executor should be included in the desired projects's project.json
file.All required options must be included in the options
property of the json.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
release | boolean | Run the Cargo command for the project in release mode | |
profile | string | Build artifacts with the specified profile | |
outputPath | string | The output path of the generated files. | "dist/target/{projectRoot}" |
toolchain * | "stable" | "beta" | "nightly" | The Rust toolchain to use | "stable" |
features | string | Features of workspace members may be enabled with package-name/feature-name syntax. Array of names is supported | |
allFeatures | boolean | Build all binary targets | |
target | string | Build the specified target | |
lib | boolean | Build the package's library | |
bin | string | Build the specified binary. Array of names or common Unix glob patterns is supported | |
bins | boolean | Build all binary targets | |
example | string | Build the specified example. Array of names or common Unix glob patterns is supported | |
examples | boolean | Build all example targets | |
test | string | Build the specified test. Array of names or common Unix glob patterns is supported | |
tests | boolean | Build all test targets | |
bench | string | Build the specified bench. Array of names or common Unix glob patterns is supported | |
benches | boolean | Build all targets in benchmark mode that have the bench = true manifest flag set. By default this includes the library and binaries built as benchmarks, and bench targets. Be aware that this will also build any required dependencies, so the lib target may be built twice (once as a benchmark, and once as a dependency for binaries, benchmarks, etc.). Targets may be enabled or disabled by setting the bench flag in the manifest settings for the target. | |
allTargets | boolean | Build all test targets |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Check a Rust project with Cargo
This executor can be used by executing the following in a command line utility:
nx run my-project:cargo-check
Please note: The cargo-check executor should be included in the desired projects's project.json
file.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
release | boolean | Run the Cargo command for the project in release mode | |
profile | string | Build artifacts with the specified profile | |
toolchain | "stable" | "beta" | "nightly" | The Rust toolchain to use | "stable" |
features | string | Features of workspace members may be enabled with package-name/feature-name syntax. Array of names is supported | |
allFeatures | boolean | Build all binary targets | |
target | string | Build the specified target | |
lib | boolean | Build the package's library | |
bin | string | Build the specified binary. Array of names or common Unix glob patterns is supported | |
bins | boolean | Build all binary targets | |
example | string | Build the specified example. Array of names or common Unix glob patterns is supported | |
examples | boolean | Build all example targets | |
test | string | Build the specified test. Array of names or common Unix glob patterns is supported | |
tests | boolean | Build all test targets | |
bench | string | Build the specified bench. Array of names or common Unix glob patterns is supported | |
benches | boolean | Build all targets in benchmark mode that have the bench = true manifest flag set. By default this includes the library and binaries built as benchmarks, and bench targets. Be aware that this will also build any required dependencies, so the lib target may be built twice (once as a benchmark, and once as a dependency for binaries, benchmarks, etc.). Targets may be enabled or disabled by setting the bench flag in the manifest settings for the target. | |
allTargets | boolean | Build all test targets |
Format a Rust project with Cargo
This executor can be used by executing the following in a command line utility:
nx run my-project:cargo-format
Please note: The cargo-format executor should be included in the desired projects's project.json
file.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
release | boolean | Run the Cargo command for the project in release mode | |
profile | string | Build artifacts with the specified profile | |
toolchain | "stable" | "beta" | "nightly" | The Rust toolchain to use | "stable" |
features | string | Features of workspace members may be enabled with package-name/feature-name syntax. Array of names is supported | |
allFeatures | boolean | Build all binary targets | |
lib | boolean | Build the package's library | |
bin | string | Build the specified binary. Array of names or common Unix glob patterns is supported | |
bins | boolean | Build all binary targets | |
example | string | Build the specified example. Array of names or common Unix glob patterns is supported | |
examples | boolean | Build all example targets | |
test | string | Build the specified test. Array of names or common Unix glob patterns is supported | |
tests | boolean | Build all test targets | |
bench | string | Build the specified bench. Array of names or common Unix glob patterns is supported | |
benches | boolean | Build all targets in benchmark mode that have the bench = true manifest flag set. By default this includes the library and binaries built as benchmarks, and bench targets. Be aware that this will also build any required dependencies, so the lib target may be built twice (once as a benchmark, and once as a dependency for binaries, benchmarks, etc.). Targets may be enabled or disabled by setting the bench flag in the manifest settings for the target. | |
allTargets | boolean | Build all test targets |
Lint a Rust project with Cargo Clippy
This executor can be used by executing the following in a command line utility:
nx run my-project:cargo-clippy
Please note: The cargo-clippy executor should be included in the desired projects's project.json
file.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
release | boolean | Run the Cargo command for the project in release mode | |
profile | string | Build artifacts with the specified profile | |
toolchain | "stable" | "beta" | "nightly" | The Rust toolchain to use | "stable" |
target | string | Build the specified target | |
fix | boolean | Automatically apply suggestions |
Create docs for a Rust project with Cargo Doc
This executor can be used by executing the following in a command line utility:
nx run my-project:cargo-doc
Please note: The cargo-doc executor should be included in the desired projects's project.json
file.All required options must be included in the options
property of the json.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
release | boolean | Run the Cargo command for the project in release mode | true |
profile | string | Build artifacts with the specified profile | |
outputPath * | string | The output path of the generated files. | "dist/docs/{projectRoot}" |
toolchain | "stable" | "beta" | "nightly" | The Rust toolchain to use | "stable" |
noDeps | boolean | Don't build documentation for dependencies | true |
features | string | Features of workspace members may be enabled with package-name/feature-name syntax. Array of names is supported | |
allFeatures | boolean | Build all binary targets | true |
target | string | Build the specified target | |
lib | boolean | Build the package's library | true |
bin | string | Build the specified binary. Array of names or common Unix glob patterns is supported | |
bins | boolean | Build all binary targets | true |
example | string | Build the specified example. Array of names or common Unix glob patterns is supported | |
examples | boolean | Build all example targets | true |
test | string | Build the specified test. Array of names or common Unix glob patterns is supported | |
tests | boolean | Build all test targets | |
bench | string | Build the specified bench. Array of names or common Unix glob patterns is supported | |
benches | boolean | Build all targets in benchmark mode that have the bench = true manifest flag set. By default this includes the library and binaries built as benchmarks, and bench targets. Be aware that this will also build any required dependencies, so the lib target may be built twice (once as a benchmark, and once as a dependency for binaries, benchmarks, etc.). Targets may be enabled or disabled by setting the bench flag in the manifest settings for the target. | |
allTargets | boolean | Build all test targets |
Please note: Option names followed by * above are required, and must be provided to run the executor.
An executor for running the Rollup build process
This executor can be used by executing the following in a command line utility:
nx run my-project:rollup
Please note: The rollup executor should be included in the desired projects's project.json
file.All required options must be included in the options
property of the json.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
entry * | string | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
outputPath * | string | The output path of the generated files. | "dist/{projectRoot}" |
tsConfig * | string | The path to the `tsconfig.json` file. | "{projectRoot}/tsconfig.json" |
project | string | The path to package.json file. | |
outputFileName | string | Name of the main output file. Defaults same basename as 'main' file. | |
clean | boolean | Remove previous output before build. | true |
fileLevelInput | boolean | Should an entry point be added for each source file in the project (each file in `sourceRoot`). | true |
allowJs | boolean | Allow JavaScript files to be compiled. | |
format | string[] | List of module formats to output. Defaults to matching format from tsconfig (e.g. CJS for CommonJS, and ESM otherwise). | |
external | array | A list of external modules that will not be bundled (`react`, `react-dom`, etc.). Can also be set to `all` (bundle nothing) or `none` (bundle everything). | |
watch | boolean | Enable re-building when files change. | |
rollupConfig | string | Path to a function which takes a rollup config and returns an updated rollup config. | |
extractCss | boolean,string | CSS files will be extracted to the output folder. Alternatively custom filename can be provided (e.g. styles.css) | true |
assets | array | List of static assets. | [] |
compiler | "babel" | "swc" | "tsc" | Which compiler to use. | "babel" |
babelUpwardRootMode | boolean | Whether to set rootmode to upward. See https://babeljs.io/docs/en/options#rootmode | true |
javascriptEnabled | boolean | Sets `javascriptEnabled` option for less loader | |
generateExportsField | boolean | Update the output package.json file's 'exports' field. This field is used by Node and bundles. | true |
additionalEntryPoints | string[] | Additional entry-points to add to exports field in the package.json file. | |
skipTypeCheck | boolean | Whether to skip TypeScript type checking. | |
skipTypeField | boolean | Prevents 'type' field from being added to compiled package.json file. Use this if you are having an issue with this field. | |
sourceMap | boolean | Output sourcemaps. |
Please note: Option names followed by * above are required, and must be provided to run the executor.
The following generators are available with this package to assist in workspace management:
Init Storm Workspace Plugin.
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
skipFormat | boolean | Skip formatting files. |
Create a Storm workspace with all of the required files and recommended packages installed.
This generator can be used by executing the following examples in a command line utility:
Generate a storm workspace with:
nx g @storm-software/workspace-tools:preset --name 'example-repo'
Generate a storm workspace with:
nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example'
Generate a storm workspace with:
nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example' --organization 'example-org' --description 'An example workspace'
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
name * | string | The name of the workspace root. | |
organization * | string | The organization that owns the workspace. | "storm-software" |
namespace | string | The npm scope used for the workspace. Defaults to the organization name. | |
includeApps * | boolean | 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)? | |
description | string | The description of the workspace to use in the package.json and README.md files. | |
repositoryUrl | string | The URL of the workspace in GitHub. Defaults to https://github.com/{organization}/{name} | |
includeRust | boolean | Should the workspace include Rust support? | |
nxCloud | boolean | Should distributed caching with Nx Cloud be enabled for the workspace? | |
mode * | "light" | "dark" | Which client mode should be used for the Nx Task Runner? | "dark" |
packageManager | "npm" | "yarn" | "pnpm" | What package manager is used for the workspace? | "pnpm" |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Create a new NodeJs TypeScript library package in the Storm workspace
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
name * | string | A name for the library. | |
description | string | The library used by Storm Software for building TypeScript applications. | |
directory * | string | A directory where the lib is placed. | |
projectNameAndRootFormat * | "as-provided" | "derived" | Whether to generate the project name and root directory as provided (as-provided ) or generate them composing their values and taking the configured layout into account (derived ). | |
tags | string | Add tags to the library (used for linting). | |
strict | boolean | Whether to enable tsconfig strict mode or not. | true |
publishable * | boolean | Generate a publishable library. | |
importPath * | string | The library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library. | |
buildable * | boolean | Generate a buildable library. | true |
setParserOptionsProject | boolean | Whether or not to configure the ESLint parserOptions.project option. We do not do this by default for lint performance reasons. | |
rootProject | boolean | Is the current project the root project in the workspace. |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Create a StormConfig JSON schema based on the workspace's project configurations
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
outputFile * | string | The file path where the schema json will be written (relative to the workspace root) | "./storm.schema.json" |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Create a new Neutral TypeScript library package in the Storm workspaces
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
name * | string | A name for the library. | |
description | string | The library used by Storm Software for building TypeScript applications. | |
directory * | string | A directory where the lib is placed. | |
projectNameAndRootFormat * | "as-provided" | "derived" | Whether to generate the project name and root directory as provided (as-provided ) or generate them composing their values and taking the configured layout into account (derived ). | |
tags | string | Add tags to the library (used for linting). | |
strict | boolean | Whether to enable tsconfig strict mode or not. | true |
publishable * | boolean | Generate a publishable library. | |
importPath * | string | The library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library. | |
buildable * | boolean | Generate a buildable library. | true |
setParserOptionsProject | boolean | Whether or not to configure the ESLint parserOptions.project option. We do not do this by default for lint performance reasons. | |
rootProject | boolean | Is the current project the root project in the workspace. |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Create a new browser TypeScript library package in the Storm workspace
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
name * | string | A name for the library. | |
description | string | The library used by Storm Software for building TypeScript applications. | |
directory * | string | A directory where the lib is placed. | |
projectNameAndRootFormat * | "as-provided" | "derived" | Whether to generate the project name and root directory as provided (as-provided ) or generate them composing their values and taking the configured layout into account (derived ). | |
tags | string | Add tags to the library (used for linting). | |
strict | boolean | Whether to enable tsconfig strict mode or not. | true |
publishable * | boolean | Generate a publishable library. | |
importPath * | string | The library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library. | |
buildable * | boolean | Generate a buildable library. | true |
setParserOptionsProject | boolean | Whether or not to configure the ESLint parserOptions.project option. We do not do this by default for lint performance reasons. | |
rootProject | boolean | Is the current project the root project in the workspace. |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Generate design tokens code using a Token Studio export
The release version generator used in Storm Workspaces
The following executor options are available:
Option | Type | Description | Default |
---|---|---|---|
projects * | object[] | The ProjectGraphProjectNodes being versioned in the current execution. | |
projectGraph * | object | ProjectGraph instance | |
specifier | string | Exact version or semver keyword to apply to the selected release group. Overrides specifierSource. | |
releaseGroup * | object | The resolved release group configuration, including name, relevant to all projects in the current execution. | |
specifierSource | "prompt" | "conventional-commits" | Which approach to use to determine the semver specifier used to bump the version of the project. | "conventional-commits" |
preid | string | The optional prerelease identifier to apply to the version, in the case that specifier has been set to prerelease. | |
packageRoot | string | The root directory of the directory (containing a manifest file at its root) to publish. Defaults to the project root | |
currentVersionResolver | "registry" | "disk" | "git-tag" | Which approach to use to determine the current version of the project. | "disk" |
currentVersionResolverMetadata | object | Additional metadata to pass to the current version resolver. | [object Object] |
Please note: Option names followed by * above are required, and must be provided to run the executor.
Run nx build workspace-tools
to build the library.
Run nx test workspace-tools
to execute the unit tests via
Jest.
Storm workspaces are built using Nx, 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.
See the open issues for a list of proposed features (and known issues).
Reach out to the maintainer at one of the following places:
This project is licensed under the Apache License 2.0. Feel free to edit and distribute this template as you like.
See LICENSE for more information.
This project adheres to Semantic Versioning. Every release, along with the migration instructions, is documented in the CHANGELOG file
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.
Please try to create bug reports that are:
Please adhere to this project's code of conduct.
You can use markdownlint-cli to check for common markdown style inconsistency.
Thanks goes to these wonderful people (emoji key):
Patrick Sullivan 🎨 💻 🔧 📖 ⚠️ | Tyler Benning 🎨 | Stormie 🚧 |
Add your contributions |
This project follows the all-contributors specification. Contributions of any kind welcome!
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 languages.
Join us on Discord to chat with the team, receive release notifications, ask questions, and get involved.
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 or join our Slack channel!
FAQs
⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.
The npm package @storm-software/workspace-tools receives a total of 94 weekly downloads. As such, @storm-software/workspace-tools popularity was classified as not popular.
We found that @storm-software/workspace-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.