diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..91bcf81 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,42 @@ +# Changelog + + +## ...main + + +### 🚀 Enhancements + +- **nuxt-galaxy:** Add composable useErrorMessage and useErrorStatus ([ca3f86b](https://github.com/rplanel/gaas/commit/ca3f86b)) + +### 🩹 Fixes + +- **blendtype:** Extract filename from signed url ([39d163b](https://github.com/rplanel/gaas/commit/39d163b)) +- **type:** Fix some type error ([c25ea11](https://github.com/rplanel/gaas/commit/c25ea11)) +- Create composable to compute the supabase auth token name from subdomain ([b26f786](https://github.com/rplanel/gaas/commit/b26f786)) +- Add parameter to set upload file name ([695e69c](https://github.com/rplanel/gaas/commit/695e69c)) +- **types:** Fix typecheck ([eba94f9](https://github.com/rplanel/gaas/commit/eba94f9)) +- Handle missing data ([d545b3a](https://github.com/rplanel/gaas/commit/d545b3a)) + +### 📖 Documentation + +- **README:** Add some information on this monorepo ([e8c94b9](https://github.com/rplanel/gaas/commit/e8c94b9)) +- **README:** Add missing extension ([3f3bed7](https://github.com/rplanel/gaas/commit/3f3bed7)) + +### 📦 Build + +- Workspace command to build all packages ([a5684b1](https://github.com/rplanel/gaas/commit/a5684b1)) + +### 🏡 Chore + +- Prepare monorepo ([65bcf0e](https://github.com/rplanel/gaas/commit/65bcf0e)) +- Add lint-staged ([861ed3f](https://github.com/rplanel/gaas/commit/861ed3f)) +- **nuxt4:** Change file organisation to match nuxt 4 ([691b747](https://github.com/rplanel/gaas/commit/691b747)) +- **font:** Add mdi and streamline font to local ([fd553ba](https://github.com/rplanel/gaas/commit/fd553ba)) +- **build:** Use pnpm catalogs ([dc33da5](https://github.com/rplanel/gaas/commit/dc33da5)) +- **imports:** Fix missing imports ([f450af7](https://github.com/rplanel/gaas/commit/f450af7)) + +### ❤️ Contributors + +- Remi PLANEL +- Rémi Planel + diff --git a/package.json b/package.json index 0b5198e..11ebbf9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gaas", - "version": "0.0.0", + "version": "0.0.3-alpha.5", "private": true, "packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321", "description": "", @@ -8,7 +8,7 @@ "license": "ISC", "keywords": [], "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", + "test": "pnpm --filter './packages/**' test", "dev": "pnpm --filter ./playground dev", "lint": "eslint .", "cleandep": "rm -rf node_modules && rm -rf pnpm-lock.yaml && pnpm --filter '**' run cleandep", diff --git a/packages/blendtype/package.json b/packages/blendtype/package.json index f708d61..72cd4ac 100644 --- a/packages/blendtype/package.json +++ b/packages/blendtype/package.json @@ -1,7 +1,7 @@ { "name": "blendtype", "type": "module", - "version": "0.0.0", + "version": "0.0.3-alpha.5", "packageManager": "pnpm@9.15.1", "description": "", "author": "Rémi Planel ", @@ -35,7 +35,7 @@ "prepack": "pnpm build", "play": "jiti playground", "release:publish": "pnpm publish --access public", - "test": "pnpm lint && pnpm test:types && vitest run --coverage", + "test": "pnpm lint && pnpm typecheck && vitest run --coverage", "typecheck": "tsc --noEmit --skipLibCheck", "cleandep": "rm -rf node_modules && rm -rf dist" }, diff --git a/packages/gaas-ui/package.json b/packages/gaas-ui/package.json index 86afe1a..f3e9216 100644 --- a/packages/gaas-ui/package.json +++ b/packages/gaas-ui/package.json @@ -1,7 +1,7 @@ { "name": "gaas-ui", "type": "module", - "version": "0.0.0", + "version": "0.0.3-alpha.5", "main": "./nuxt.config.ts", "scripts": { "dev": "nuxi dev .playground", diff --git a/packages/nuxt-galaxy/package.json b/packages/nuxt-galaxy/package.json index 0b7d4b9..250d152 100644 --- a/packages/nuxt-galaxy/package.json +++ b/packages/nuxt-galaxy/package.json @@ -1,7 +1,7 @@ { "name": "nuxt-galaxy", "type": "module", - "version": "0.0.3-alpha.4", + "version": "0.0.3-alpha.5", "packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321", "description": "Galaxy module for Nuxt", "license": "MIT", diff --git a/packages/nuxt-galaxy/test/fixtures/basic/nuxt.config.ts b/packages/nuxt-galaxy/test/fixtures/basic/nuxt.config.ts index ed0c53f..0b2b25a 100644 --- a/packages/nuxt-galaxy/test/fixtures/basic/nuxt.config.ts +++ b/packages/nuxt-galaxy/test/fixtures/basic/nuxt.config.ts @@ -4,4 +4,10 @@ export default defineNuxtConfig({ modules: [ MyModule, ], + galaxy: { + apiKey: 'galaxy-api-key', + email: 'email@example.com', + url: 'https://galaxy.example.com', + }, + supabase: { url: 'http://localhost:54323', key: 'anno-key' }, })