@storm-software/workspace-tools 1.82.0 → 1.82.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.
@@ -13,5 +13,9 @@
13
13
  **/.DS_Store/**
14
14
  **/Thumbs.db/**
15
15
  **/.tamagui*
16
- **/.next*
17
- **/CODEOWNERS
16
+ .next/**
17
+ CODEOWNERS
18
+ dist/**
19
+ coverage/**
20
+ .nx/cache/**
21
+ **/src/generators/**/files/**/*
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "root": true,
3
- "ignorePatterns": ["**/*", "**/node_modules/**"],
4
- "plugins": ["@nx"],
3
+ "ignorePatterns": ["**/*"],
4
+ "parser": "@typescript-eslint/parser",
5
+ "env": {
6
+ "node": true
7
+ },
8
+ "plugins": ["@storm-software"],
9
+ "extends": ["plugin:@storm-software/recommended"],
5
10
  "overrides": [
6
11
  {
7
12
  "files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
@@ -0,0 +1,30 @@
1
+ .alexignore
2
+ .prettierignore
3
+ npm-lock.json
4
+ pnpm-lock.json
5
+ yarn.lock.json
6
+ npm-lock.yml
7
+ pnpm-lock.yml
8
+ yarn.lock.yml
9
+ npm-lock.yaml
10
+ pnpm-lock.yaml
11
+ yarn.lock.yaml
12
+ bun.lockb
13
+
14
+ **/.git/**
15
+ **/.docusaurus/**
16
+ **/dist/**
17
+ **/dotnet/**
18
+ **/node_modules/**
19
+ **/.next/**
20
+ **/tools/docker/**
21
+ **/__snapshots__/**
22
+ **/catalog-package/**
23
+ **/*.hbs
24
+ **/CODEOWNERS
25
+ **/CODE_OF_CONDUCT.md
26
+ **/CONTRIBUTING.md
27
+ **/LICENSE
28
+ **/LICENSE.md
29
+ **/LICENSE.txt
30
+ **/src/generators/**/files/**/*
@@ -0,0 +1,9 @@
1
+ const {
2
+ plugins,
3
+ ...prettierConfig
4
+ } = require("@storm-software/prettier/config.json");
5
+
6
+ module.exports = {
7
+ ...prettierConfig,
8
+ plugins: [...plugins]
9
+ };
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "<%= name %>",
3
+ "namespace": "<%= namespace %>",
4
+ "repository": "https://github.com/<%= organization %>/<%= name %>",
5
+ "organization": "<%= organization %>",
6
+ "ci": true,
7
+ "owner": "<%= name %>",
8
+ "timezone": "America/New_York",
9
+ "locale": "en-US",
10
+ "logLevel": "debug",
11
+ "externalPackagePatterns": ["@storm-software/"],
12
+ "colors": {
13
+ "light": {
14
+ "background": "#f4f4f5",
15
+ "foreground": "#1d232a",
16
+ "brand": "#1fb2a6",
17
+ "help": "#8250df",
18
+ "success": "#087f5b",
19
+ "info": "#0550ae",
20
+ "warning": "#e3b341",
21
+ "error": "#a40e26"
22
+ },
23
+ "dark": {
24
+ "background": "#22272E",
25
+ "foreground": "#fcfcf5",
26
+ "brand": "#1fb2a6",
27
+ "help": "#8256D0",
28
+ "success": "#087f5b",
29
+ "info": "#316DCA",
30
+ "warning": "#F3D371",
31
+ "error": "#d1242f"
32
+ }
33
+ },
34
+ "extensions": {
35
+ "telemetry": {
36
+ "fileName": "storm",
37
+ "fileExtension": "log",
38
+ "path": "tmp/storm/logs",
39
+ "stacktrace": true
40
+ }
41
+ }
42
+ }