@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 @@
1
+ <%= nodeVersion %>
@@ -0,0 +1,14 @@
1
+ {
2
+ "scanSettings": {
3
+ "baseBranches": []
4
+ },
5
+ "checkRunSettings": {
6
+ "vulnerableCheckRunConclusionLevel": "failure",
7
+ "displayMode": "diff",
8
+ "useMendCheckNames": true
9
+ },
10
+ "issueSettings": {
11
+ "minSeverityLevel": "LOW",
12
+ "issueType": "DEPENDENCY"
13
+ }
14
+ }
@@ -0,0 +1 @@
1
+ * @sullivanpj
@@ -0,0 +1,125 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ - Demonstrating empathy and kindness toward other people
21
+ - Being respectful of differing opinions, viewpoints, and experiences
22
+ - Giving and gracefully accepting constructive feedback
23
+ - Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ - Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ - The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ - Trolling, insulting or derogatory comments, and personal or political attacks
33
+ - Public or private harassment
34
+ - Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ - Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at <admin@stormsoftware.org>.
63
+ All complaints will be reviewed and investigated promptly and fairly.
64
+
65
+ All community leaders are obligated to respect the privacy and security of the
66
+ reporter of any incident.
67
+
68
+ ## Enforcement Guidelines
69
+
70
+ Community leaders will follow these Community Impact Guidelines in determining
71
+ the consequences for any action they deem in violation of this Code of Conduct:
72
+
73
+ ### 1. Correction
74
+
75
+ **Community Impact**: Use of inappropriate language or other behavior deemed
76
+ unprofessional or unwelcome in the community.
77
+
78
+ **Consequence**: A private, written warning from community leaders, providing
79
+ clarity around the nature of the violation and an explanation of why the
80
+ behavior was inappropriate. A public apology may be requested.
81
+
82
+ ### 2. Warning
83
+
84
+ **Community Impact**: A violation through a single incident or series
85
+ of actions.
86
+
87
+ **Consequence**: A warning with consequences for continued behavior. No
88
+ interaction with the people involved, including unsolicited interaction with
89
+ those enforcing the Code of Conduct, for a specified period of time. This
90
+ includes avoiding interactions in community spaces as well as external channels
91
+ like social media. Violating these terms may lead to a temporary or
92
+ permanent ban.
93
+
94
+ ### 3. Temporary Ban
95
+
96
+ **Community Impact**: A serious violation of community standards, including
97
+ sustained inappropriate behavior.
98
+
99
+ **Consequence**: A temporary ban from any sort of interaction or public
100
+ communication with the community for a specified period of time. No public or
101
+ private interaction with the people involved, including unsolicited interaction
102
+ with those enforcing the Code of Conduct, is allowed during this period.
103
+ Violating these terms may lead to a permanent ban.
104
+
105
+ ### 4. Permanent Ban
106
+
107
+ **Community Impact**: Demonstrating a pattern of violation of community
108
+ standards, including sustained inappropriate behavior, harassment of an
109
+ individual, or aggression toward or disparagement of classes of individuals.
110
+
111
+ **Consequence**: A permanent ban from any sort of public interaction within
112
+ the community.
113
+
114
+ ## Attribution
115
+
116
+ This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org),
117
+ version 2.0, available at
118
+ [https://www.contributor-covenant.org/version/2/0/code_of_conduct.html](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html).
119
+
120
+ Community Impact Guidelines were inspired by
121
+ [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/inclusion).
122
+
123
+ For answers to common questions about this code of conduct, see the FAQ at
124
+ [https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq). Translations are available
125
+ at [https://www.contributor-covenant.org/translations](https://www.contributor-covenant.org/translations).
@@ -0,0 +1,15 @@
1
+ # All contributions, however small are valued
2
+
3
+ ## Steps to contribute
4
+
5
+ If you want to make a small change, go ahead and raise a pull request, otherwise follow these steps:
6
+
7
+ 1. View the [Issues](https://github.com/<%= organization %>/<%= name %>/issues) page to see a To-Do list of things to be implemented.
8
+ 2. Raise an issue or comment on an existing issue with what you want to contribute if one does not already exist.
9
+ 3. When you get the go ahead, follow the coding guidelines and raise a pull request.
10
+ 4. Include a link to the issue in your pull request.
11
+
12
+ ## Coding Guidelines
13
+
14
+ - Projects use StyleCop and .editorconfig to produce style warnings. Please fix all warnings in any code you submit.
15
+ - Write unit tests for any code written.
@@ -0,0 +1,3 @@
1
+ # These are supported funding model platforms
2
+
3
+ patreon: StormSoftware
@@ -0,0 +1,102 @@
1
+ name: 🐞 Bug Report
2
+ description: Report a bug.
3
+ title: "[Bug]: "
4
+ labels: ["bug", "triage"]
5
+ assignees:
6
+ - sullivanpj
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thanks for taking the time to fill out this bug report!
12
+ - type: input
13
+ id: contact
14
+ attributes:
15
+ label: Contact Details
16
+ description: How can we get in touch with you if we need more info?
17
+ placeholder: ex. email@example.com
18
+ validations:
19
+ required: true
20
+ - type: textarea
21
+ id: actual-results
22
+ attributes:
23
+ label: Current Behavior
24
+ description: What behavior are you currently experiencing?
25
+ placeholder: What behavior are you currently experiencing?
26
+ value: "What behavior are you currently experiencing?"
27
+ validations:
28
+ required: true
29
+ - type: textarea
30
+ id: expected-results
31
+ attributes:
32
+ label: Expected Behavior
33
+ description: What behavior are you expecting to experience?
34
+ placeholder: What behavior are you expecting to experience?
35
+ value: "What behavior are you expecting to experience?"
36
+ validations:
37
+ required: true
38
+ - type: dropdown
39
+ id: package
40
+ attributes:
41
+ label: Package Name
42
+ description: Which package are you experiencing this error with?
43
+ multiple: true
44
+ options:
45
+ - create-storm-workspace
46
+ - Linting Tools
47
+ - Git Tools
48
+ - Workspace Tools
49
+ validations:
50
+ required: true
51
+ - type: dropdown
52
+ id: version
53
+ attributes:
54
+ label: Version
55
+ description: What version of our software are you running?
56
+ options:
57
+ - 1.0.0
58
+ validations:
59
+ required: false
60
+ - type: dropdown
61
+ id: operating-system
62
+ attributes:
63
+ label: What platform(s) are you seeing the problem in?
64
+ multiple: true
65
+ options:
66
+ - Microsoft Windows
67
+ - MacOS
68
+ - ChromeOS
69
+ - iOS
70
+ - Android
71
+ - Ubuntu
72
+ - Debian
73
+ - Fedora
74
+ - CentOS
75
+ - Linux (General)
76
+ - Other
77
+ validations:
78
+ required: false
79
+ - type: dropdown
80
+ id: browsers
81
+ attributes:
82
+ label: What browsers are you seeing the problem on (if applicable)?
83
+ multiple: true
84
+ options:
85
+ - Firefox
86
+ - Chrome
87
+ - Safari
88
+ - Microsoft Edge
89
+ - type: textarea
90
+ id: logs
91
+ attributes:
92
+ label: Relevant log output
93
+ description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
94
+ render: TypeScript
95
+ - type: checkboxes
96
+ id: agreed
97
+ attributes:
98
+ label: Code of Conduct
99
+ description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
100
+ options:
101
+ - label: I agree to follow this project's Code of Conduct
102
+ required: true
@@ -0,0 +1,56 @@
1
+ name: 📖 Documentation issue
2
+ description: Help improve our docs.
3
+ title: "[Documentation]: "
4
+ labels: ["documentation"]
5
+ assignees:
6
+ - sullivanpj
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thanks for taking the time to help us improve the ⚡Storm Docs!
12
+ - type: input
13
+ id: contact
14
+ attributes:
15
+ label: Contact Details
16
+ description: How can we get in touch with you if we need more info?
17
+ placeholder: ex. email@example.com
18
+ validations:
19
+ required: true
20
+ - type: dropdown
21
+ id: type
22
+ attributes:
23
+ label: Documentation issue
24
+ description: Reason for this request
25
+ multiple: true
26
+ options:
27
+ - Reporting a typo
28
+ - Reporting a documentation bug
29
+ - Documentation improvement
30
+ - Documentation feedback
31
+ validations:
32
+ required: true
33
+ - type: input
34
+ id: description
35
+ attributes:
36
+ label: Is there a specific documentation page you are reporting?
37
+ description: Enter the URL or documentation section here.
38
+ placeholder: Enter the URL or documentation section here.
39
+ validations:
40
+ required: true
41
+ - type: textarea
42
+ id: additional-details
43
+ attributes:
44
+ label: Additional context or description
45
+ description: Provide any additional details here as needed.
46
+ placeholder: Provide any additional details here as needed.
47
+ validations:
48
+ required: false
49
+ - type: checkboxes
50
+ id: agreed
51
+ attributes:
52
+ label: Code of Conduct
53
+ description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
54
+ options:
55
+ - label: I agree to follow this project's Code of Conduct
56
+ required: true
@@ -0,0 +1,60 @@
1
+ name: 🎁 Feature Request
2
+ description: Suggest a new feature.
3
+ title: "[Feature]: "
4
+ labels: ["enhancement"]
5
+ assignees:
6
+ - sullivanpj
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thanks for taking the time to fill out this feature request!
12
+ Use this issue type for concrete suggestions, otherwise, open a discussion type issue instead.
13
+ - type: input
14
+ id: contact
15
+ attributes:
16
+ label: Contact Details
17
+ description: How can we get in touch with you if we need more info?
18
+ placeholder: ex. email@example.com
19
+ validations:
20
+ required: true
21
+ - type: textarea
22
+ id: description
23
+ attributes:
24
+ label: Description
25
+ description: What is the behavior that you would like to see introduced?
26
+ placeholder: What is the behavior that you would like to see introduced?
27
+ validations:
28
+ required: true
29
+ - type: textarea
30
+ id: motivation
31
+ attributes:
32
+ label: Motivation
33
+ description: Why do you believe this behavior would be beneficial?
34
+ placeholder: Why do you believe this behavior would be beneficial?
35
+ validations:
36
+ required: false
37
+ - type: textarea
38
+ id: implementation
39
+ attributes:
40
+ label: Suggested Implementation
41
+ description: How do you imagine this might work?
42
+ placeholder: How do you imagine this might work?
43
+ validations:
44
+ required: false
45
+ - type: checkboxes
46
+ id: contribute
47
+ attributes:
48
+ label: Contribution
49
+ description: Willingness to contribute
50
+ options:
51
+ - label: I'd be willing to implement this feature ([contributing guide](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CONTRIBUTING.md))
52
+ required: false
53
+ - type: checkboxes
54
+ id: agreed
55
+ attributes:
56
+ label: Code of Conduct
57
+ description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
58
+ options:
59
+ - label: I agree to follow this project's Code of Conduct
60
+ required: true
@@ -0,0 +1,39 @@
1
+ <!--- Please provide a general summary of your changes in the title above -->
2
+
3
+ # Pull request
4
+
5
+ Thank you good citizen for your hard work! Please provide the below details describing your PR.
6
+
7
+ **Note:** Please read the [contributing guide](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CONTRIBUTING.md) before raising a pull request.
8
+
9
+ ## Pull request type
10
+
11
+ <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. -->
12
+
13
+ Please check the type of change your PR introduces:
14
+
15
+ - [ ] Bugfix
16
+ - [ ] Feature
17
+ - [ ] Code style update (formatting, renaming)
18
+ - [ ] Refactoring (no functional changes, no api changes)
19
+ - [ ] Build related changes
20
+ - [ ] Documentation content changes
21
+ - [ ] Other (please describe):
22
+
23
+ ## What is the current behavior?
24
+
25
+ <!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
26
+
27
+ Issue Number: N/A
28
+
29
+ ## What is the new behavior?
30
+
31
+ <!-- Please describe the behavior or changes that are being added by this PR. -->
32
+
33
+ -
34
+ -
35
+ -
36
+
37
+ ## Other information
38
+
39
+ <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
@@ -0,0 +1,9 @@
1
+ # Reporting Security Issues
2
+
3
+ If you believe you have found a security vulnerability in this repository, we encourage you to let us know right away.
4
+
5
+ We will investigate all legitimate reports and do our best to quickly fix the problem.
6
+
7
+ Email `admin@stormsoftware.org` to disclose any security vulnerabilities.
8
+
9
+ <https://stormsoftware.org/security>
@@ -0,0 +1,41 @@
1
+ name: "Setup Workspace"
2
+ description: "This action install node and cache modules. It uses pnpm as package manager."
3
+ inputs:
4
+ working-directory:
5
+ description: "The working directory of your node package"
6
+ default: "."
7
+ required: false
8
+
9
+ runs:
10
+ using: "composite"
11
+ steps:
12
+ - uses: actions/setup-node@v4
13
+ with:
14
+ node-version: ${{ inputs.node-version }}
15
+
16
+ - uses: pnpm/action-setup@v3.0.0
17
+ id: pnpm-install
18
+ with:
19
+ version: 8.10.2
20
+ run_install: false
21
+
22
+ - name: Get pnpm store directory
23
+ shell: bash
24
+ id: pnpm-cache
25
+ run: |
26
+ echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
27
+
28
+ - uses: actions/setup-node@v4
29
+ with:
30
+ registry-url: https://registry.npmjs.org/
31
+ node-version-file: .github/.nvmrc
32
+ cache: pnpm
33
+ cache-dependency-path: pnpm-lock.yaml
34
+
35
+ - name: setup pnpm config registry
36
+ run: pnpm config set registry https://registry.npmjs.org
37
+ shell: bash
38
+
39
+ - name: setup pnpm config registry
40
+ run: pnpm install
41
+ shell: bash
@@ -0,0 +1,29 @@
1
+ codecov:
2
+ notify:
3
+ require_ci_to_pass: yes
4
+
5
+ coverage:
6
+ status:
7
+ project:
8
+ default:
9
+ target: 90%
10
+ threshold: 2%
11
+ precision: 2
12
+ round: down
13
+ range: "70...100"
14
+
15
+ parsers:
16
+ gcov:
17
+ branch_detection:
18
+ conditional: yes
19
+ loop: yes
20
+ method: no
21
+ macro: no
22
+
23
+ comment:
24
+ layout: "reach, diff, flags, files"
25
+ behavior: default
26
+ require_changes: false # if true: only post the comment if coverage changes
27
+ require_base: false # [yes :: must have a base report to post]
28
+ require_head: true # [yes :: must have a head report to post]
29
+ branches: ["main"]
@@ -0,0 +1,78 @@
1
+ ---
2
+ - name: "breaking-change"
3
+ color: ee0701
4
+ description: "A breaking change for existing users."
5
+ - name: "bug"
6
+ color: ee0701
7
+ description: "Inconsistencies or issues which will cause a problem for users or implementors."
8
+ - name: "documentation"
9
+ color: 0052cc
10
+ description: "Solely about the documentation of the project."
11
+ - name: "enhancement"
12
+ color: 1d76db
13
+ description: "Enhancement of the code, not introducing new features."
14
+ - name: "refactor"
15
+ color: 1d76db
16
+ description: "Improvement of existing code, not introducing new features."
17
+ - name: "performance"
18
+ color: 1d76db
19
+ description: "Improving performance, not introducing new features."
20
+ - name: "new-feature"
21
+ color: 0e8a16
22
+ description: "New features or options."
23
+ - name: "maintenance"
24
+ color: 2af79e
25
+ description: "Generic maintenance tasks."
26
+ - name: "ci"
27
+ color: 1d76db
28
+ description: "Work that improves the continue integration."
29
+ - name: "dependencies"
30
+ color: 1d76db
31
+ description: "Upgrade or downgrade of project dependencies."
32
+
33
+ - name: "in-progress"
34
+ color: fbca04
35
+ description: "Issue is currently being resolved by a developer."
36
+ - name: "stale"
37
+ color: fef2c0
38
+ description: "There has not been activity on this issue or PR for quite some time."
39
+ - name: "no-stale"
40
+ color: fef2c0
41
+ description: "This issue or PR is exempted from the stable bot."
42
+
43
+ - name: "security"
44
+ color: ee0701
45
+ description: "Marks a security issue that needs to be resolved ASAP."
46
+ - name: "incomplete"
47
+ color: fef2c0
48
+ description: "Marks a PR or issue that is missing information."
49
+ - name: "invalid"
50
+ color: fef2c0
51
+ description: "Marks a PR or issue that is missing information."
52
+
53
+ - name: "beginner-friendly"
54
+ color: 0e8a16
55
+ description: "Good first issue for people wanting to contribute to the project."
56
+ - name: "help-wanted"
57
+ color: 0e8a16
58
+ description: "We need some extra helping hands or expertise in order to resolve this."
59
+
60
+ - name: "priority-critical"
61
+ color: ee0701
62
+ description: "This should be dealt with ASAP. Not fixing this issue would be a serious error."
63
+ - name: "priority-high"
64
+ color: b60205
65
+ description: "After critical issues are fixed, these should be dealt with before any further issues."
66
+ - name: "priority-medium"
67
+ color: 0e8a16
68
+ description: "This issue may be useful, and needs some attention."
69
+ - name: "priority-low"
70
+ color: e4ea8a
71
+ description: "Nice addition, maybe... someday..."
72
+
73
+ - name: "major"
74
+ color: b60205
75
+ description: "This PR causes a major version bump in the version number."
76
+ - name: "minor"
77
+ color: 0e8a16
78
+ description: "This PR causes a minor version bump in the version number."
@@ -0,0 +1,51 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:base",
5
+ "group:monorepos",
6
+ "schedule:weekly",
7
+ ":semanticCommits",
8
+ ":automergePatch",
9
+ ":noUnscheduledUpdates",
10
+ ":pinAllExceptPeerDependencies"
11
+ ],
12
+ "semanticCommits": "enabled",
13
+ "reviewers": ["@sullivanpj"],
14
+ "rebaseWhen": "conflicted",
15
+ "rangeStrategy": "pin",
16
+ "automerge": true,
17
+ "major": {
18
+ "automerge": false
19
+ },
20
+ "minor": {
21
+ "automerge": false
22
+ },
23
+ "packageRules": [
24
+ {
25
+ "matchPackagePatterns": ["^@<%= namespace %>/"],
26
+ "enabled": true
27
+ },
28
+ {
29
+ "matchPackageNames": ["@nx"],
30
+ "postUpgradeTasks": {
31
+ "commands": [
32
+ "npx nx migrate latest --run-migrations --create-commits --commit-message='chore(<%= name %>): update @nx dependencies [skip ci]'"
33
+ ]
34
+ }
35
+ },
36
+ {
37
+ "groupName": "dependencies-non-major",
38
+ "matchUpdateTypes": ["digest", "minor", "patch", "pin"]
39
+ },
40
+ {
41
+ "groupName": "patch & minor dev dependencies",
42
+ "depTypeList": ["devDependencies"],
43
+ "updateTypes": ["digest", "minor", "patch", "pin"]
44
+ },
45
+ {
46
+ "groupName": "patch prod dependencies",
47
+ "depTypeList": ["dependencies"],
48
+ "updateTypes": ["patch", "pin"]
49
+ }
50
+ ]
51
+ }