Skip to content

Commit

Permalink
chore: release v0.0.3-alpha.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rplanel committed Jan 9, 2025
1 parent d545b3a commit 953eff4
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 6 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
- Rémi Planel <[email protected]>

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "gaas",
"version": "0.0.0",
"version": "0.0.3-alpha.5",
"private": true,
"packageManager": "[email protected]+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321",
"description": "",
"author": "",
"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",
Expand Down
4 changes: 2 additions & 2 deletions packages/blendtype/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "blendtype",
"type": "module",
"version": "0.0.0",
"version": "0.0.3-alpha.5",
"packageManager": "[email protected]",
"description": "",
"author": "Rémi Planel <[email protected]>",
Expand Down Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/gaas-ui/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxt-galaxy/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nuxt-galaxy",
"type": "module",
"version": "0.0.3-alpha.4",
"version": "0.0.3-alpha.5",
"packageManager": "[email protected]+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321",
"description": "Galaxy module for Nuxt",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/nuxt-galaxy/test/fixtures/basic/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@ export default defineNuxtConfig({
modules: [
MyModule,
],
galaxy: {
apiKey: 'galaxy-api-key',
email: '[email protected]',
url: 'https://galaxy.example.com',
},
supabase: { url: 'http://localhost:54323', key: 'anno-key' },
})

0 comments on commit 953eff4

Please sign in to comment.