@storm-software/workspace-tools 1.270.2 → 1.271.1
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 +40 -0
- package/README.md +1 -1
- package/dist/chunk-4QYM3VS4.mjs +282 -0
- package/dist/{chunk-ZP76EMBE.js → chunk-FYXWAGK3.js} +97 -27
- package/dist/chunk-MJMN2T4N.mjs +166 -0
- package/dist/chunk-RZVF4LHT.js +282 -0
- package/dist/executors.js +6 -6
- package/dist/executors.mjs +6 -6
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +8 -8
- package/dist/src/executors/npm-publish/executor.js +3 -3
- package/dist/src/executors/npm-publish/executor.mjs +2 -2
- package/dist/src/generators/preset/files/LICENSE +201 -0
- package/dist/src/utils/index.d.mts +1 -1
- package/dist/src/utils/index.d.ts +1 -1
- package/dist/src/utils/index.js +2 -2
- package/dist/src/utils/index.mjs +3 -3
- package/dist/src/utils/pnpm-deps-update.d.mts +3 -3
- package/dist/src/utils/pnpm-deps-update.d.ts +3 -3
- package/dist/src/utils/pnpm-deps-update.js +2 -2
- package/dist/src/utils/pnpm-deps-update.mjs +3 -3
- package/docs/api/base/base-executor.schema.md +16 -0
- package/docs/api/base/base-generator.schema.md +15 -0
- package/docs/api/base/cargo-base-executor.schema.md +90 -0
- package/docs/api/base/typescript-build-executor.schema.md +126 -0
- package/docs/api/base/typescript-library-generator.schema.md +129 -0
- package/docs/api/executors/cargo-build/schema.md +89 -0
- package/docs/api/executors/cargo-check/schema.md +90 -0
- package/docs/api/executors/cargo-clippy/schema.md +99 -0
- package/docs/api/executors/cargo-doc/schema.md +130 -0
- package/docs/api/executors/cargo-format/schema.md +90 -0
- package/docs/api/executors/cargo-publish/schema.md +117 -0
- package/docs/api/executors/clean-package/schema.md +65 -0
- package/docs/api/executors/esbuild/schema.md +126 -0
- package/docs/api/executors/npm-publish/schema.md +64 -0
- package/docs/api/executors/size-limit/schema.md +25 -0
- package/docs/api/executors/typia/schema.md +46 -0
- package/docs/api/executors/unbuild/schema.md +222 -0
- package/docs/api/generators/browser-library/files/README.md +58 -0
- package/docs/api/generators/browser-library/schema.md +129 -0
- package/docs/api/generators/config-schema/schema.md +25 -0
- package/docs/api/generators/init/schema.md +15 -0
- package/docs/api/generators/neutral-library/files/README.md +58 -0
- package/docs/api/generators/neutral-library/schema.md +129 -0
- package/docs/api/generators/node-library/files/README.md +63 -0
- package/docs/api/generators/node-library/schema.md +129 -0
- package/docs/api/generators/preset/schema.md +110 -0
- package/docs/api/generators/release-version/schema.md +160 -0
- package/package.json +13 -35
- package/dist/chunk-CMH2A42G.js +0 -467
- package/dist/chunk-HMJTTE4A.mjs +0 -96
- package/dist/chunk-I54IKCIV.mjs +0 -467
- package/docs/executors/rollup.md +0 -88
- package/executors.ts +0 -23
- package/generators.ts +0 -14
- package/index.ts +0 -5
- package/project.json +0 -58
- package/src/base/base-executor.ts +0 -200
- package/src/base/base-executor.untyped.ts +0 -18
- package/src/base/base-generator.ts +0 -130
- package/src/base/base-generator.untyped.ts +0 -16
- package/src/base/cargo-base-executor.untyped.ts +0 -73
- package/src/base/index.ts +0 -8
- package/src/base/typescript-build-executor.untyped.ts +0 -153
- package/src/base/typescript-library-generator.ts +0 -415
- package/src/base/typescript-library-generator.untyped.ts +0 -106
- package/src/executors/cargo-build/executor.spec.ts +0 -18
- package/src/executors/cargo-build/executor.ts +0 -28
- package/src/executors/cargo-build/untyped.ts +0 -18
- package/src/executors/cargo-check/executor.spec.ts +0 -18
- package/src/executors/cargo-check/executor.ts +0 -27
- package/src/executors/cargo-check/untyped.ts +0 -11
- package/src/executors/cargo-clippy/executor.spec.ts +0 -18
- package/src/executors/cargo-clippy/executor.ts +0 -28
- package/src/executors/cargo-clippy/untyped.ts +0 -18
- package/src/executors/cargo-doc/executor.spec.ts +0 -18
- package/src/executors/cargo-doc/executor.ts +0 -39
- package/src/executors/cargo-doc/untyped.ts +0 -44
- package/src/executors/cargo-format/executor.spec.ts +0 -18
- package/src/executors/cargo-format/executor.ts +0 -28
- package/src/executors/cargo-format/untyped.ts +0 -11
- package/src/executors/cargo-publish/executor.spec.ts +0 -11
- package/src/executors/cargo-publish/executor.ts +0 -139
- package/src/executors/cargo-publish/untyped.ts +0 -33
- package/src/executors/clean-package/constants.ts +0 -99
- package/src/executors/clean-package/executor.spec.ts +0 -18
- package/src/executors/clean-package/executor.ts +0 -214
- package/src/executors/clean-package/types.ts +0 -6
- package/src/executors/clean-package/untyped.ts +0 -60
- package/src/executors/clean-package/utils.ts +0 -85
- package/src/executors/esbuild/executor.spec.ts +0 -11
- package/src/executors/esbuild/executor.ts +0 -67
- package/src/executors/esbuild/untyped.ts +0 -20
- package/src/executors/npm-publish/executor.spec.ts +0 -11
- package/src/executors/npm-publish/executor.ts +0 -680
- package/src/executors/npm-publish/untyped.ts +0 -56
- package/src/executors/size-limit/executor.spec.ts +0 -18
- package/src/executors/size-limit/executor.ts +0 -88
- package/src/executors/size-limit/untyped.ts +0 -22
- package/src/executors/typia/executor.ts +0 -54
- package/src/executors/typia/untyped.ts +0 -48
- package/src/executors/unbuild/executor.spec.ts +0 -11
- package/src/executors/unbuild/executor.ts +0 -136
- package/src/executors/unbuild/untyped.ts +0 -152
- package/src/generators/browser-library/generator.spec.ts +0 -20
- package/src/generators/browser-library/generator.ts +0 -109
- package/src/generators/browser-library/untyped.ts +0 -29
- package/src/generators/config-schema/generator.spec.ts +0 -20
- package/src/generators/config-schema/generator.ts +0 -90
- package/src/generators/config-schema/untyped.ts +0 -19
- package/src/generators/init/init.ts +0 -32
- package/src/generators/init/untyped.ts +0 -16
- package/src/generators/neutral-library/generator.spec.ts +0 -20
- package/src/generators/neutral-library/generator.ts +0 -81
- package/src/generators/neutral-library/untyped.ts +0 -29
- package/src/generators/node-library/generator.spec.ts +0 -20
- package/src/generators/node-library/generator.ts +0 -84
- package/src/generators/node-library/untyped.ts +0 -29
- package/src/generators/preset/files/.all-contributorsrc.template +0 -48
- package/src/generators/preset/files/.editorconfig +0 -454
- package/src/generators/preset/files/.env.template +0 -38
- package/src/generators/preset/files/.gitattributes +0 -52
- package/src/generators/preset/files/.github/.nvmrc +0 -1
- package/src/generators/preset/files/.github/CODEOWNERS +0 -3
- package/src/generators/preset/files/.github/CODE_OF_CONDUCT.md +0 -125
- package/src/generators/preset/files/.github/CONTRIBUTING.md.template +0 -15
- package/src/generators/preset/files/.github/FUNDING.yml +0 -3
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +0 -102
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/documentation.yml.template +0 -56
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/feature-request.yml.template +0 -60
- package/src/generators/preset/files/.github/PULL_REQUEST_TEMPLATE.md.template +0 -39
- package/src/generators/preset/files/.github/SECURITY.md +0 -9
- package/src/generators/preset/files/.github/codecov.yml +0 -29
- package/src/generators/preset/files/.github/dependabot.yml +0 -64
- package/src/generators/preset/files/.github/labels.yml +0 -84
- package/src/generators/preset/files/.github/renovate.json +0 -4
- package/src/generators/preset/files/.github/renovate.json.template +0 -63
- package/src/generators/preset/files/.github/stale.yml +0 -55
- package/src/generators/preset/files/.github/workflows/build-release.yml.template +0 -25
- package/src/generators/preset/files/.github/workflows/code-review.yml +0 -18
- package/src/generators/preset/files/.github/workflows/codeql.yml +0 -84
- package/src/generators/preset/files/.github/workflows/dependabot-update.yml +0 -32
- package/src/generators/preset/files/.github/workflows/git-guardian.yml +0 -23
- package/src/generators/preset/files/.github/workflows/greetings.yml +0 -31
- package/src/generators/preset/files/.github/workflows/labels.yml +0 -31
- package/src/generators/preset/files/.github/workflows/lock.yml +0 -26
- package/src/generators/preset/files/.log4brains.yml.template +0 -5
- package/src/generators/preset/files/.markdownlint.json +0 -155
- package/src/generators/preset/files/.verdaccio/config.yml.template +0 -40
- package/src/generators/preset/files/.vscode/README.md +0 -32
- package/src/generators/preset/files/.vscode/cspell.json +0 -3
- package/src/generators/preset/files/.vscode/extensions.json +0 -14
- package/src/generators/preset/files/.vscode/launch.json +0 -37
- package/src/generators/preset/files/.vscode/settings.json +0 -401
- package/src/generators/preset/files/.vscode/tasks.json +0 -4
- package/src/generators/preset/files/.whitesource +0 -14
- package/src/generators/preset/files/assets/diagrams/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/dark/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/light/.gitkeep +0 -0
- package/src/generators/preset/files/assets/logos/.gitkeep +0 -0
- package/src/generators/preset/files/docs/api-reference/.gitkeep +0 -0
- package/src/generators/preset/generator.spec.ts +0 -20
- package/src/generators/preset/generator.ts +0 -315
- package/src/generators/preset/untyped.ts +0 -88
- package/src/generators/release-version/generator.spec.ts +0 -20
- package/src/generators/release-version/generator.ts +0 -920
- package/src/generators/release-version/untyped.ts +0 -156
- package/src/plugins/rust/cargo-toml.ts +0 -434
- package/src/plugins/rust/index.ts +0 -1
- package/src/plugins/typescript/index.ts +0 -1
- package/src/plugins/typescript/project-config.ts +0 -564
- package/src/plugins/typescript/tsup.ts +0 -198
- package/src/types.ts +0 -130
- package/src/utils/apply-workspace-tokens.ts +0 -73
- package/src/utils/cargo.ts +0 -219
- package/src/utils/create-cli-options.ts +0 -23
- package/src/utils/get-project-configurations.ts +0 -27
- package/src/utils/index.ts +0 -12
- package/src/utils/lock-file.ts +0 -159
- package/src/utils/package-helpers.ts +0 -54
- package/src/utils/plugin-helpers.ts +0 -112
- package/src/utils/pnpm-deps-update.ts +0 -111
- package/src/utils/project-tags.ts +0 -162
- package/src/utils/toml.ts +0 -204
- package/src/utils/typia-transform.ts +0 -8
- package/src/utils/versions.ts +0 -19
- package/tsconfig.json +0 -30
- package/tsup.config.ts +0 -36
- /package/{src/generators/preset/files/LICENSE → LICENSE} +0 -0
- /package/{src → dist/src}/base/base-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/base-executor.schema.json +0 -0
- /package/{src → dist/src}/base/base-executor.schema.md +0 -0
- /package/{src → dist/src}/base/base-generator.schema.d.ts +0 -0
- /package/{src → dist/src}/base/base-generator.schema.json +0 -0
- /package/{src → dist/src}/base/base-generator.schema.md +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.json +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.md +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.json +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.md +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.d.ts +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.json +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.md +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.json +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.md +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.json +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.md +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.json +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.md +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.json +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.md +0 -0
- /package/{src → dist/src}/executors/typia/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/typia/schema.json +0 -0
- /package/{src → dist/src}/executors/typia/schema.md +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.json +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.md +0 -0
- /package/{src → dist/src}/generators/browser-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/browser-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/browser-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/browser-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.json +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.md +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.json +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.md +0 -0
- /package/{src → dist/src}/generators/init/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/init/schema.json +0 -0
- /package/{src → dist/src}/generators/init/schema.md +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.json +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.md +0 -0
- /package/{src → dist/src}/generators/node-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/node-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/node-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/node-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/node-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/node-library/schema.json +0 -0
- /package/{src → dist/src}/generators/node-library/schema.md +0 -0
- /package/{src → dist/src}/generators/preset/files/README.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.footer.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.header.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/eslint.config.js.template +0 -0
- /package/{src → dist/src}/generators/preset/files/knip.json +0 -0
- /package/{src → dist/src}/generators/preset/files/lefthook.json +0 -0
- /package/{src → dist/src}/generators/preset/files/nx.json +0 -0
- /package/{src → dist/src}/generators/preset/files/pnpm-workspace.yaml +0 -0
- /package/{src → dist/src}/generators/preset/files/socket.yaml +0 -0
- /package/{src → dist/src}/generators/preset/files/storm.json.template +0 -0
- /package/{src → dist/src}/generators/preset/files/tsconfig.base.json.template +0 -0
- /package/{src → dist/src}/generators/preset/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/preset/schema.json +0 -0
- /package/{src → dist/src}/generators/preset/schema.md +0 -0
- /package/{src → dist/src}/generators/release-version/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/release-version/schema.json +0 -0
- /package/{src → dist/src}/generators/release-version/schema.md +0 -0
- /package/{src → dist/src}/plugins/typescript/untyped-schema.ts +0 -0
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
# For most projects, this workflow file will not need changing; you simply need
|
|
2
|
-
# to commit it to your repository.
|
|
3
|
-
#
|
|
4
|
-
# You may wish to alter this file to override the set of languages analyzed,
|
|
5
|
-
# or to provide custom queries or build logic.
|
|
6
|
-
#
|
|
7
|
-
# ******** NOTE ********
|
|
8
|
-
# We have attempted to detect the languages in your repository. Please check
|
|
9
|
-
# the `language` matrix defined below to confirm you have the correct set of
|
|
10
|
-
# supported CodeQL languages.
|
|
11
|
-
#
|
|
12
|
-
name: "CodeQL"
|
|
13
|
-
|
|
14
|
-
on:
|
|
15
|
-
push:
|
|
16
|
-
branches: ["main"]
|
|
17
|
-
pull_request:
|
|
18
|
-
# The branches below must be a subset of the branches above
|
|
19
|
-
branches: ["main"]
|
|
20
|
-
schedule:
|
|
21
|
-
- cron: "37 16 * * 6"
|
|
22
|
-
|
|
23
|
-
jobs:
|
|
24
|
-
analyze:
|
|
25
|
-
name: Analyze
|
|
26
|
-
# Runner size impacts CodeQL analysis time. To learn more, please see:
|
|
27
|
-
# - https://gh.io/recommended-hardware-resources-for-running-codeql
|
|
28
|
-
# - https://gh.io/supported-runners-and-hardware-resources
|
|
29
|
-
# - https://gh.io/using-larger-runners
|
|
30
|
-
# Consider using larger runners for possible analysis time improvements.
|
|
31
|
-
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
|
|
32
|
-
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
|
|
33
|
-
permissions:
|
|
34
|
-
actions: read
|
|
35
|
-
contents: read
|
|
36
|
-
security-events: write
|
|
37
|
-
|
|
38
|
-
strategy:
|
|
39
|
-
fail-fast: false
|
|
40
|
-
matrix:
|
|
41
|
-
language: ["javascript"]
|
|
42
|
-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
|
|
43
|
-
# Use only 'java' to analyze code written in Java, Kotlin or both
|
|
44
|
-
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
|
|
45
|
-
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
|
46
|
-
|
|
47
|
-
steps:
|
|
48
|
-
- name: Checkout repository
|
|
49
|
-
uses: actions/checkout@v4
|
|
50
|
-
with:
|
|
51
|
-
fetch-depth: 0
|
|
52
|
-
token: ${{ secrets.STORM_BOT_GITHUB_TOKEN }}
|
|
53
|
-
|
|
54
|
-
# Initializes the CodeQL tools for scanning.
|
|
55
|
-
- name: Initialize CodeQL
|
|
56
|
-
uses: github/codeql-action/init@v3
|
|
57
|
-
with:
|
|
58
|
-
languages: ${{ matrix.language }}
|
|
59
|
-
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
60
|
-
# By default, queries listed here will override any specified in a config file.
|
|
61
|
-
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
62
|
-
|
|
63
|
-
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
|
64
|
-
# queries: security-extended,security-and-quality
|
|
65
|
-
|
|
66
|
-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
|
|
67
|
-
# If this step fails, then you should remove it and run the build manually (see below)
|
|
68
|
-
- name: Autobuild
|
|
69
|
-
uses: github/codeql-action/autobuild@v3
|
|
70
|
-
|
|
71
|
-
# ℹ️ Command-line programs to run using the OS shell.
|
|
72
|
-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
73
|
-
|
|
74
|
-
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
|
75
|
-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
|
76
|
-
|
|
77
|
-
# - run: |
|
|
78
|
-
# echo "Run, Build Application using script"
|
|
79
|
-
# ./location_of_script_within_repo/buildscript.sh
|
|
80
|
-
|
|
81
|
-
- name: Perform CodeQL Analysis
|
|
82
|
-
uses: github/codeql-action/analyze@v3
|
|
83
|
-
with:
|
|
84
|
-
category: "/language:${{matrix.language}}"
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Dependabot Update
|
|
3
|
-
|
|
4
|
-
on:
|
|
5
|
-
pull_request:
|
|
6
|
-
types:
|
|
7
|
-
- opened
|
|
8
|
-
- synchronize
|
|
9
|
-
|
|
10
|
-
permissions:
|
|
11
|
-
contents: write
|
|
12
|
-
pull-requests: write
|
|
13
|
-
|
|
14
|
-
jobs:
|
|
15
|
-
dependabot:
|
|
16
|
-
env:
|
|
17
|
-
PR_URL: ${{github.event.pull_request.html_url}}
|
|
18
|
-
GITHUB_TOKEN: "${{secrets.STORM_BOT_GITHUB_TOKEN}}"
|
|
19
|
-
runs-on: ubuntu-latest
|
|
20
|
-
if: github.actor == 'dependabot[bot]'
|
|
21
|
-
steps:
|
|
22
|
-
- name: Fetch Dependabot metadata
|
|
23
|
-
id: metadata
|
|
24
|
-
uses: dependabot/fetch-metadata@v2
|
|
25
|
-
with:
|
|
26
|
-
github-token: "${{ secrets.STORM_BOT_GITHUB_TOKEN }}"
|
|
27
|
-
|
|
28
|
-
- name: Auto-merge the pull request in GitHub
|
|
29
|
-
run: gh pr merge --auto --squash --delete-branch "${PR_URL}"
|
|
30
|
-
env:
|
|
31
|
-
GITHUB_ACTOR: stormie-bot
|
|
32
|
-
GITHUB_TOKEN: "${{secrets.STORM_BOT_GITHUB_TOKEN}}"
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
name: "GitGuardian Scan"
|
|
2
|
-
|
|
3
|
-
on: [push, pull_request]
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
scanning:
|
|
7
|
-
name: GitGuardian scan
|
|
8
|
-
runs-on: ubuntu-latest
|
|
9
|
-
steps:
|
|
10
|
-
- name: Checkout repository
|
|
11
|
-
uses: actions/checkout@v4
|
|
12
|
-
with:
|
|
13
|
-
fetch-depth: 0
|
|
14
|
-
token: ${{ secrets.STORM_BOT_GITHUB_TOKEN }}
|
|
15
|
-
|
|
16
|
-
- name: GitGuardian scan
|
|
17
|
-
uses: GitGuardian/ggshield-action@master
|
|
18
|
-
env:
|
|
19
|
-
GITHUB_PUSH_BEFORE_SHA: ${{ github.event.before }}
|
|
20
|
-
GITHUB_PUSH_BASE_SHA: ${{ github.event.base }}
|
|
21
|
-
GITHUB_PULL_BASE_SHA: ${{ github.event.pull_request.base.sha }}
|
|
22
|
-
GITHUB_DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
|
|
23
|
-
GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
name: "Greetings"
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
pull_request_target:
|
|
5
|
-
issues:
|
|
6
|
-
branches:
|
|
7
|
-
- main
|
|
8
|
-
- canary
|
|
9
|
-
- experimental
|
|
10
|
-
|
|
11
|
-
jobs:
|
|
12
|
-
greeting:
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
if: github.actor != 'stormie-bot' && github.actor != 'dependabot[bot]' && github.actor != 'mend-bolt-for-github[bot]'
|
|
15
|
-
permissions:
|
|
16
|
-
issues: write
|
|
17
|
-
pull-requests: write
|
|
18
|
-
steps:
|
|
19
|
-
- uses: actions/first-interaction@v1
|
|
20
|
-
with:
|
|
21
|
-
repo-token: ${{ github.token }}
|
|
22
|
-
issue-message:
|
|
23
|
-
"Hello, I'm 🤖 stormie-bot (Storm Increased Efficiency Robot)! Thank you for your interest in this
|
|
24
|
-
project! The Storm team will review this issue and reach out to you
|
|
25
|
-
ASAP."
|
|
26
|
-
pr-message:
|
|
27
|
-
"Hello, I'm 🤖 stormie-bot (Storm Increased Efficiency Robot)! The Storm team sincerely appreciates
|
|
28
|
-
your effort/interest in contributing to this project. A Storm
|
|
29
|
-
developer will review this change and get back to you ASAP. Please
|
|
30
|
-
feel free to reach out to the Storm team (contact@stormsoftware.com)
|
|
31
|
-
if you have any questions/comments."
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Sync labels
|
|
3
|
-
|
|
4
|
-
on:
|
|
5
|
-
push:
|
|
6
|
-
branches:
|
|
7
|
-
- main
|
|
8
|
-
paths:
|
|
9
|
-
- .github/labels.yml
|
|
10
|
-
|
|
11
|
-
env:
|
|
12
|
-
CI: true
|
|
13
|
-
NX_DAEMON: false
|
|
14
|
-
NX_VERBOSE_LOGGING: true
|
|
15
|
-
SKIP_ENV_VALIDATION: true
|
|
16
|
-
|
|
17
|
-
jobs:
|
|
18
|
-
labels:
|
|
19
|
-
name: ♻️ Sync labels
|
|
20
|
-
runs-on: ubuntu-latest
|
|
21
|
-
steps:
|
|
22
|
-
- name: Checkout repository
|
|
23
|
-
uses: actions/checkout@v4
|
|
24
|
-
with:
|
|
25
|
-
fetch-depth: 0
|
|
26
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
27
|
-
|
|
28
|
-
- name: 🚀 Run Label Syncer
|
|
29
|
-
uses: micnncim/action-label-syncer@v1.3.0
|
|
30
|
-
env:
|
|
31
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Lock
|
|
3
|
-
|
|
4
|
-
on:
|
|
5
|
-
schedule:
|
|
6
|
-
- cron: "0 9 * * *"
|
|
7
|
-
workflow_dispatch:
|
|
8
|
-
|
|
9
|
-
env:
|
|
10
|
-
CI: true
|
|
11
|
-
NX_DAEMON: false
|
|
12
|
-
NX_VERBOSE_LOGGING: true
|
|
13
|
-
SKIP_ENV_VALIDATION: true
|
|
14
|
-
|
|
15
|
-
jobs:
|
|
16
|
-
lock:
|
|
17
|
-
name: 🔒 Lock closed issues and PRs
|
|
18
|
-
runs-on: ubuntu-latest
|
|
19
|
-
steps:
|
|
20
|
-
- uses: dessant/lock-threads@v5
|
|
21
|
-
with:
|
|
22
|
-
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
23
|
-
issue-inactive-days: "30"
|
|
24
|
-
issue-lock-reason: ""
|
|
25
|
-
pr-inactive-days: "1"
|
|
26
|
-
pr-lock-reason: ""
|
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"comment": "Be explicit by listing every available rule. https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md",
|
|
3
|
-
"comment": "Note that there will be numeric gaps, not every MD number is implemented in markdownlint.",
|
|
4
|
-
|
|
5
|
-
"comment": "MD001: Header levels should only increment by one level at a time.",
|
|
6
|
-
"header-increment": true,
|
|
7
|
-
|
|
8
|
-
"comment": "MD002: First header should be a top level header.",
|
|
9
|
-
"first-header-h1": true,
|
|
10
|
-
|
|
11
|
-
"comment": "MD003: Header style: start with hashes.",
|
|
12
|
-
"header-style": {
|
|
13
|
-
"style": "atx"
|
|
14
|
-
},
|
|
15
|
-
|
|
16
|
-
"comment": "MD004: Unordered list style",
|
|
17
|
-
"ul-style": {
|
|
18
|
-
"style": "dash"
|
|
19
|
-
},
|
|
20
|
-
|
|
21
|
-
"comment": "MD005: Consistent indentation for list items at the same level.",
|
|
22
|
-
"list-indent": true,
|
|
23
|
-
|
|
24
|
-
"comment": "MD006: Consider starting bulleted lists at the beginning of the line.",
|
|
25
|
-
"ul-start-left": false,
|
|
26
|
-
|
|
27
|
-
"comment": "MD007: Unordered list indentation: 2 spaces.",
|
|
28
|
-
"ul-indent": {
|
|
29
|
-
"indent": 2,
|
|
30
|
-
"start_indented": true
|
|
31
|
-
},
|
|
32
|
-
|
|
33
|
-
"comment": "MD009: Disallow trailing spaces!",
|
|
34
|
-
"no-trailing-spaces": {
|
|
35
|
-
"br_spaces": 0,
|
|
36
|
-
"comment": "Empty lines inside list items should not be indented.",
|
|
37
|
-
"list_item_empty_lines": false
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
"comment": "MD010: No hard tabs, not even in code blocks.",
|
|
41
|
-
"no-hard-tabs": {
|
|
42
|
-
"code_blocks": true
|
|
43
|
-
},
|
|
44
|
-
|
|
45
|
-
"comment": "MD011: Prevent reversed link syntax",
|
|
46
|
-
"no-reversed-links": true,
|
|
47
|
-
|
|
48
|
-
"comment": "MD012: Disallow multiple consecutive blank lines.",
|
|
49
|
-
"no-multiple-blanks": {
|
|
50
|
-
"maximum": 1
|
|
51
|
-
},
|
|
52
|
-
|
|
53
|
-
"comment": "MD013: Line length",
|
|
54
|
-
"line-length": false,
|
|
55
|
-
|
|
56
|
-
"comment": "MD014: Disallow use of dollar signs($) before commands without showing output.",
|
|
57
|
-
"commands-show-output": true,
|
|
58
|
-
|
|
59
|
-
"comment": "MD018: Disallow space after hash on atx style header.",
|
|
60
|
-
"no-missing-space-atx": true,
|
|
61
|
-
|
|
62
|
-
"comment": "MD019: Disallow multiple spaces after hash on atx style header.",
|
|
63
|
-
"no-multiple-space-atx": true,
|
|
64
|
-
|
|
65
|
-
"comment": "MD020: No space should be inside hashes on closed atx style header.",
|
|
66
|
-
"no-missing-space-closed-atx": true,
|
|
67
|
-
|
|
68
|
-
"comment": "MD021: Disallow multiple spaces inside hashes on closed atx style header.",
|
|
69
|
-
"no-multiple-space-closed-atx": true,
|
|
70
|
-
|
|
71
|
-
"comment": "MD022: Headers should be surrounded by blank lines.",
|
|
72
|
-
"comment": "Some headers have preceding HTML anchors. Unfortunate that we have to disable this, as it otherwise catches a real problem that trips up some Markdown renderers",
|
|
73
|
-
"blanks-around-headers": false,
|
|
74
|
-
|
|
75
|
-
"comment": "MD023: Headers must start at the beginning of the line.",
|
|
76
|
-
"header-start-left": true,
|
|
77
|
-
|
|
78
|
-
"comment": "MD024: Disallow multiple headers with the same content.",
|
|
79
|
-
"no-duplicate-header": true,
|
|
80
|
-
|
|
81
|
-
"comment": "MD025: Disallow multiple top level headers in the same document.",
|
|
82
|
-
"comment": "Gotta have a matching closing brace at the end.",
|
|
83
|
-
"single-h1": false,
|
|
84
|
-
|
|
85
|
-
"comment": "MD026: Disallow trailing punctuation in header.",
|
|
86
|
-
"comment": "You must have a semicolon after the ending closing brace.",
|
|
87
|
-
"no-trailing-punctuation": {
|
|
88
|
-
"punctuation": ".,:!?"
|
|
89
|
-
},
|
|
90
|
-
"comment": "MD027: Dissalow multiple spaces after blockquote symbol",
|
|
91
|
-
"no-multiple-space-blockquote": true,
|
|
92
|
-
|
|
93
|
-
"comment": "MD028: Blank line inside blockquote",
|
|
94
|
-
"comment": "Some 'Why?' and 'Why not?' blocks are separated by a blank line",
|
|
95
|
-
"no-blanks-blockquote": false,
|
|
96
|
-
|
|
97
|
-
"comment": "MD029: Ordered list item prefix",
|
|
98
|
-
"ol-prefix": {
|
|
99
|
-
"style": "one"
|
|
100
|
-
},
|
|
101
|
-
|
|
102
|
-
"comment": "MD030: Spaces after list markers",
|
|
103
|
-
"list-marker-space": {
|
|
104
|
-
"ul_single": 1,
|
|
105
|
-
"ol_single": 1,
|
|
106
|
-
"ul_multi": 1,
|
|
107
|
-
"ol_multi": 1
|
|
108
|
-
},
|
|
109
|
-
|
|
110
|
-
"comment": "MD031: Fenced code blocks should be surrounded by blank lines",
|
|
111
|
-
"blanks-around-fences": true,
|
|
112
|
-
|
|
113
|
-
"comment": "MD032: Lists should be surrounded by blank lines",
|
|
114
|
-
"comment": "Some lists have preceding HTML anchors. Unfortunate that we have to disable this, as it otherwise catches a real problem that trips up some Markdown renderers",
|
|
115
|
-
"blanks-around-lists": false,
|
|
116
|
-
|
|
117
|
-
"comment": "MD033: Disallow inline HTML",
|
|
118
|
-
"comment": "HTML is needed for explicit anchors",
|
|
119
|
-
"no-inline-html": false,
|
|
120
|
-
|
|
121
|
-
"comment": "MD034: No bare URLs should be used",
|
|
122
|
-
"no-bare-urls": true,
|
|
123
|
-
|
|
124
|
-
"comment": "MD035: Horizontal rule style",
|
|
125
|
-
"hr-style": {
|
|
126
|
-
"style": "consistent"
|
|
127
|
-
},
|
|
128
|
-
|
|
129
|
-
"comment": "MD036: Do not use emphasis instead of a header.",
|
|
130
|
-
"no-emphasis-as-header": false,
|
|
131
|
-
|
|
132
|
-
"comment": "MD037: Disallow spaces inside emphasis markers.",
|
|
133
|
-
"no-space-in-emphasis": true,
|
|
134
|
-
|
|
135
|
-
"comment": "MD038: Disallow spaces inside code span elements.",
|
|
136
|
-
"no-space-in-code": true,
|
|
137
|
-
|
|
138
|
-
"comment": "MD039: Disallow spaces inside link text.",
|
|
139
|
-
"no-space-in-links": true,
|
|
140
|
-
|
|
141
|
-
"comment": "MD040: Fenced code blocks should have a language specified.",
|
|
142
|
-
"fenced-code-language": true,
|
|
143
|
-
|
|
144
|
-
"comment": "MD041: First line in file should be a top level header.",
|
|
145
|
-
"first-line-h1": true,
|
|
146
|
-
|
|
147
|
-
"comment": "MD042: No empty links",
|
|
148
|
-
"no-empty-links": true,
|
|
149
|
-
|
|
150
|
-
"comment": "MD043: Required header structure.",
|
|
151
|
-
"required-headers": false,
|
|
152
|
-
|
|
153
|
-
"comment": "MD044: Proper names should have the correct capitalization.",
|
|
154
|
-
"proper-names": false
|
|
155
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# path to a directory with all packages
|
|
2
|
-
storage: ../dist/local-registry/storage
|
|
3
|
-
|
|
4
|
-
# a list of other known repositories we can talk to
|
|
5
|
-
uplinks:
|
|
6
|
-
npmjs:
|
|
7
|
-
url: https://registry.npmjs.org/
|
|
8
|
-
maxage: 60m
|
|
9
|
-
|
|
10
|
-
packages:
|
|
11
|
-
'@<%= namespace %>/*':
|
|
12
|
-
access: $all
|
|
13
|
-
publish: $all
|
|
14
|
-
proxy: http://localhost:4873
|
|
15
|
-
|
|
16
|
-
'@*/*':
|
|
17
|
-
# scoped packages
|
|
18
|
-
access: $all
|
|
19
|
-
publish: $all
|
|
20
|
-
unpublish: $all
|
|
21
|
-
proxy: npmjs
|
|
22
|
-
|
|
23
|
-
'**':
|
|
24
|
-
# give all users (including non-authenticated users) full access
|
|
25
|
-
# because it is a local registry
|
|
26
|
-
access: $all
|
|
27
|
-
publish: $all
|
|
28
|
-
unpublish: $all
|
|
29
|
-
|
|
30
|
-
# if package is not available locally, proxy requests to npm registry
|
|
31
|
-
proxy: npmjs
|
|
32
|
-
|
|
33
|
-
# log settings
|
|
34
|
-
logs:
|
|
35
|
-
type: stdout
|
|
36
|
-
format: pretty
|
|
37
|
-
level: warn
|
|
38
|
-
|
|
39
|
-
publish:
|
|
40
|
-
allow_offline: true # set offline to true to allow publish offline
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
## VS Code Settings
|
|
2
|
-
|
|
3
|
-
This directory includes the global settings for the development of this Storm workspace.
|
|
4
|
-
|
|
5
|
-
See:
|
|
6
|
-
|
|
7
|
-
- [VS Code Doc: User and Workspace Settings](https://code.visualstudio.com/docs/getstarted/settings)
|
|
8
|
-
- [What is a VS Code Workspace?](https://stackoverflow.com/questions/44629890/what-is-a-workspace-in-visual-studio-code)
|
|
9
|
-
|
|
10
|
-
### Overriding Global Settings
|
|
11
|
-
|
|
12
|
-
It is possible to create your own "local" settings, overriding the global, via a `.code-workspace` file. See:
|
|
13
|
-
|
|
14
|
-
- [Workspace Settings](https://code.visualstudio.com/docs/editor/multi-root-workspaces#_settings)
|
|
15
|
-
- [Local settings overrides](https://github.com/microsoft/vscode/issues/37519)
|
|
16
|
-
|
|
17
|
-
> `*.code-workspace` files are included in `.gitignore`
|
|
18
|
-
|
|
19
|
-
For example, if you want a bright pink status background (and who doesn't?), create this file in the root of your project `mySettings.code-workspace`:
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
// mySettings.code-workspace
|
|
23
|
-
|
|
24
|
-
"workbench.colorCustomizations": {
|
|
25
|
-
"statusBar.background": "#ff007f",
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
> **WARNING:** If you create a custom file that is ignored by git, then _anytime_ you run `git clean -fxd` the file will be permanently deleted.
|
|
31
|
-
>
|
|
32
|
-
> You can avoid this by using the option `-e`, e.g. `git clean -fxd -e mySettings.code-workspace`.
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"recommendations": [
|
|
3
|
-
"nrwl.angular-console",
|
|
4
|
-
"storm-software.acidic",
|
|
5
|
-
"esbenp.prettier-vscode",
|
|
6
|
-
"firsttris.vscode-jest-runner",
|
|
7
|
-
"dbaeumer.vscode-eslint",
|
|
8
|
-
"streetsidesoftware.code-spell-checker",
|
|
9
|
-
"editorconfig.editorconfig",
|
|
10
|
-
"ambar.bundle-size",
|
|
11
|
-
"vscode-icons-team.vscode-icons",
|
|
12
|
-
"davidanson.vscode-markdownlint"
|
|
13
|
-
]
|
|
14
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "0.2.0",
|
|
3
|
-
"configurations": [
|
|
4
|
-
{
|
|
5
|
-
"name": "Run Extension",
|
|
6
|
-
"type": "extensionHost",
|
|
7
|
-
"request": "launch",
|
|
8
|
-
"args": [
|
|
9
|
-
"--extensionDevelopmentPath=${workspaceFolder}/node_modules/@acidic/language"
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"name": "Run CodeGen",
|
|
14
|
-
"type": "extensionHost",
|
|
15
|
-
"request": "launch",
|
|
16
|
-
"args": [
|
|
17
|
-
"--extensionDevelopmentPath=${workspaceFolder}/node_modules/acidic"
|
|
18
|
-
]
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"name": "Attach",
|
|
22
|
-
"port": 9229,
|
|
23
|
-
"request": "attach",
|
|
24
|
-
"skipFiles": ["<node_internals>/**"],
|
|
25
|
-
"type": "node"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"name": "Attach to Language Server",
|
|
29
|
-
"type": "node",
|
|
30
|
-
"port": 6009,
|
|
31
|
-
"request": "attach",
|
|
32
|
-
"skipFiles": ["<node_internals>/**"],
|
|
33
|
-
"sourceMaps": true,
|
|
34
|
-
"outFiles": ["${workspaceFolder}/node_modules/@acidic/language/**/*.js"]
|
|
35
|
-
}
|
|
36
|
-
]
|
|
37
|
-
}
|