@swixy/core 1.0.0 → 1.0.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/.claudecodeignore CHANGED
@@ -1,25 +1,25 @@
1
- # Dependencies
2
- node_modules/
3
-
4
- # Build outputs
5
- dist/
6
- build/
7
- out/
8
- .next/
9
- .turbo/
10
-
11
- # Env files
12
- .env
13
- .env*.local
14
-
15
- # Misc
16
- .DS_Store
17
- *.log
18
- coverage/
19
- .vscode/
20
- .idea/
21
-
22
- # Lock files
23
- package-lock.json
24
- yarn.lock
25
- pnpm-lock.yaml
1
+ # Dependencies
2
+ node_modules/
3
+
4
+ # Build outputs
5
+ dist/
6
+ build/
7
+ out/
8
+ .next/
9
+ .turbo/
10
+
11
+ # Env files
12
+ .env
13
+ .env*.local
14
+
15
+ # Misc
16
+ .DS_Store
17
+ *.log
18
+ coverage/
19
+ .vscode/
20
+ .idea/
21
+
22
+ # Lock files
23
+ package-lock.json
24
+ yarn.lock
25
+ pnpm-lock.yaml
@@ -0,0 +1,19 @@
1
+ name: Publish
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: 20
16
+ registry-url: https://registry.npmjs.org
17
+ - run: npm publish
18
+ env:
19
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/.prettierignore CHANGED
@@ -1,25 +1,25 @@
1
- # Dependencies
2
- node_modules/
3
-
4
- # Build outputs
5
- dist/
6
- build/
7
- out/
8
- .next/
9
- .turbo/
10
-
11
- # Env files
12
- .env
13
- .env*.local
14
-
15
- # Misc
16
- .DS_Store
17
- *.log
18
- coverage/
19
- .vscode/
20
- .idea/
21
-
22
- # Lock files
23
- package-lock.json
24
- yarn.lock
25
- pnpm-lock.yaml
1
+ # Dependencies
2
+ node_modules/
3
+
4
+ # Build outputs
5
+ dist/
6
+ build/
7
+ out/
8
+ .next/
9
+ .turbo/
10
+
11
+ # Env files
12
+ .env
13
+ .env*.local
14
+
15
+ # Misc
16
+ .DS_Store
17
+ *.log
18
+ coverage/
19
+ .vscode/
20
+ .idea/
21
+
22
+ # Lock files
23
+ package-lock.json
24
+ yarn.lock
25
+ pnpm-lock.yaml
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swixy/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core utilities and shared setup",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
@@ -1,16 +1,16 @@
1
- export default {
2
- semi: true,
3
- singleQuote: true,
4
- tabWidth: 2,
5
- useTabs: true,
6
- trailingComma: "none",
7
- arrowParens: "avoid",
8
- endOfLine: "lf",
9
- bracketSpacing: true,
10
- jsxSingleQuote: true,
11
- quoteProps: "avoid",
12
- importOrder: ["^react$", "^react-dom$", "^next", "^@/(.*)$", "^[./]"],
13
- importOrderSeparation: true,
14
- importOrderSortSpecifiers: true,
15
- plugins: ["@trivago/prettier-plugin-sort-imports"],
16
- };
1
+ export default {
2
+ semi: true,
3
+ singleQuote: true,
4
+ tabWidth: 2,
5
+ useTabs: true,
6
+ trailingComma: "none",
7
+ arrowParens: "avoid",
8
+ endOfLine: "lf",
9
+ bracketSpacing: true,
10
+ jsxSingleQuote: true,
11
+ quoteProps: "avoid",
12
+ importOrder: ["^react$", "^react-dom$", "^next", "^@/(.*)$", "^[./]"],
13
+ importOrderSeparation: true,
14
+ importOrderSortSpecifiers: true,
15
+ plugins: ["@trivago/prettier-plugin-sort-imports"],
16
+ };