From ad8d0af97612ab6cf38dd3813f1cf0ebae62aff9 Mon Sep 17 00:00:00 2001 From: Kieran Date: Tue, 30 Jan 2024 22:04:19 +0000 Subject: [PATCH] chore: bump pacakges --- packages/app/vite.config.ts | 1 + packages/shared/package.json | 3 ++- packages/shared/src/{.d.ts => custom.d.ts} | 0 packages/shared/tsconfig.json | 10 ++++------ packages/system-react/package.json | 6 +++--- packages/system-react/tsconfig.json | 6 +++--- packages/system-svelte/package.json | 1 + packages/system-svelte/tsconfig.json | 9 ++++----- packages/system-web/package.json | 1 + packages/system-web/tsconfig.json | 6 +++--- packages/system/package.json | 5 +++-- packages/system/tsconfig.json | 10 ++++------ 12 files changed, 29 insertions(+), 29 deletions(-) rename packages/shared/src/{.d.ts => custom.d.ts} (100%) diff --git a/packages/app/vite.config.ts b/packages/app/vite.config.ts index 3b808780..ec24bf53 100644 --- a/packages/app/vite.config.ts +++ b/packages/app/vite.config.ts @@ -33,6 +33,7 @@ export default defineConfig({ ifGitSHA: true, command: "git describe --always --tags", ifMeta: false, + ifLog: false, }), ], assetsInclude: ["**/*.md", "**/*.wasm"], diff --git a/packages/shared/package.json b/packages/shared/package.json index f3543585..c5c2c40e 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,7 +1,8 @@ { "name": "@snort/shared", - "version": "1.0.11", + "version": "1.0.12", "description": "Shared components for Snort", + "type": "module", "module": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/shared/src/.d.ts b/packages/shared/src/custom.d.ts similarity index 100% rename from packages/shared/src/.d.ts rename to packages/shared/src/custom.d.ts diff --git a/packages/shared/tsconfig.json b/packages/shared/tsconfig.json index 315053bd..2d70b7ed 100644 --- a/packages/shared/tsconfig.json +++ b/packages/shared/tsconfig.json @@ -2,18 +2,16 @@ "compilerOptions": { "baseUrl": "src", "target": "ESNext", - "moduleResolution": "NodeNext", + "moduleResolution": "Bundler", "esModuleInterop": true, "noImplicitOverride": true, - "module": "NodeNext", + "module": "ESNext", "strict": true, "declaration": true, - "declarationMap": true, "inlineSourceMap": true, "outDir": "dist", "skipLibCheck": true }, - "exclude": ["src/**/*.test.ts"], - "include": ["src/**/*.ts", "src/.d.ts"], - "files": ["src/index.ts"] + "include": ["./src/**/*.ts"], + "exclude": ["src/**/*.test.ts"] } diff --git a/packages/system-react/package.json b/packages/system-react/package.json index 0c74a330..7257bff1 100644 --- a/packages/system-react/package.json +++ b/packages/system-react/package.json @@ -1,6 +1,6 @@ { "name": "@snort/system-react", - "version": "1.2.0", + "version": "1.2.1", "description": "React hooks for @snort/system", "main": "dist/index.js", "module": "src/index.ts", @@ -16,8 +16,8 @@ "dist" ], "dependencies": { - "@snort/shared": "^1.0.11", - "@snort/system": "^1.2.0", + "@snort/shared": "^1.0.12", + "@snort/system": "^1.2.1", "react": "^18.2.0" }, "devDependencies": { diff --git a/packages/system-react/tsconfig.json b/packages/system-react/tsconfig.json index 70340f1f..354e9a8e 100644 --- a/packages/system-react/tsconfig.json +++ b/packages/system-react/tsconfig.json @@ -5,14 +5,14 @@ "moduleResolution": "Bundler", "esModuleInterop": true, "noImplicitOverride": true, + "module": "ESNext", "jsx": "react-jsx", "strict": true, "declaration": true, - "declarationMap": true, "inlineSourceMap": true, "outDir": "dist", "skipLibCheck": true }, - "include": ["src/**/*.ts"], - "files": ["src/index.ts"] + "include": ["./src/**/*.ts*"], + "exclude": ["**/*.test.ts"] } diff --git a/packages/system-svelte/package.json b/packages/system-svelte/package.json index 647246dd..585962e0 100644 --- a/packages/system-svelte/package.json +++ b/packages/system-svelte/package.json @@ -2,6 +2,7 @@ "name": "@snort/system-svelte", "version": "1.0.0", "description": "Svelte functions for @snort/system", + "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "https://git.v0l.io/Kieran/snort", diff --git a/packages/system-svelte/tsconfig.json b/packages/system-svelte/tsconfig.json index 1df1aae6..5240a30a 100644 --- a/packages/system-svelte/tsconfig.json +++ b/packages/system-svelte/tsconfig.json @@ -2,17 +2,16 @@ "compilerOptions": { "baseUrl": "src", "target": "ESNext", - "moduleResolution": "NodeNext", + "moduleResolution": "Bundler", "esModuleInterop": true, "noImplicitOverride": true, - "module": "NodeNext", + "module": "ESNext", "strict": true, "declaration": true, - "declarationMap": true, "inlineSourceMap": true, "outDir": "dist", "skipLibCheck": true }, - "include": ["src/**/*.ts"], - "files": ["src/index.ts"] + "include": ["./src/**/*.ts"], + "exclude": ["**/*.test.ts"] } diff --git a/packages/system-web/package.json b/packages/system-web/package.json index 1ebf4628..3bec58e0 100644 --- a/packages/system-web/package.json +++ b/packages/system-web/package.json @@ -2,6 +2,7 @@ "name": "@snort/system-web", "version": "1.0.4", "description": "Web based components @snort/system", + "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "https://git.v0l.io/Kieran/snort", diff --git a/packages/system-web/tsconfig.json b/packages/system-web/tsconfig.json index 70340f1f..354e9a8e 100644 --- a/packages/system-web/tsconfig.json +++ b/packages/system-web/tsconfig.json @@ -5,14 +5,14 @@ "moduleResolution": "Bundler", "esModuleInterop": true, "noImplicitOverride": true, + "module": "ESNext", "jsx": "react-jsx", "strict": true, "declaration": true, - "declarationMap": true, "inlineSourceMap": true, "outDir": "dist", "skipLibCheck": true }, - "include": ["src/**/*.ts"], - "files": ["src/index.ts"] + "include": ["./src/**/*.ts*"], + "exclude": ["**/*.test.ts"] } diff --git a/packages/system/package.json b/packages/system/package.json index 403ce18a..2ca779d6 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,7 +1,8 @@ { "name": "@snort/system", - "version": "1.2.0", + "version": "1.2.1", "description": "Snort nostr system package", + "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "module": "src/index.ts", @@ -35,7 +36,7 @@ "@noble/curves": "^1.2.0", "@noble/hashes": "^1.3.2", "@scure/base": "^1.1.2", - "@snort/shared": "^1.0.11", + "@snort/shared": "^1.0.12", "@stablelib/xchacha20": "^1.0.1", "debug": "^4.3.4", "eventemitter3": "^5.0.1", diff --git a/packages/system/tsconfig.json b/packages/system/tsconfig.json index 7843d498..5240a30a 100644 --- a/packages/system/tsconfig.json +++ b/packages/system/tsconfig.json @@ -2,18 +2,16 @@ "compilerOptions": { "baseUrl": "src", "target": "ESNext", - "moduleResolution": "NodeNext", + "moduleResolution": "Bundler", "esModuleInterop": true, "noImplicitOverride": true, - "module": "NodeNext", + "module": "ESNext", "strict": true, "declaration": true, - "declarationMap": true, "inlineSourceMap": true, "outDir": "dist", - "skipLibCheck": true, - "allowJs": true + "skipLibCheck": true }, "include": ["./src/**/*.ts"], - "files": ["./src/index.ts"] + "exclude": ["**/*.test.ts"] }