diff --git a/packages/azoth/compose.js b/packages/azoth/compose.js index 14f9bd6..f25a046 100644 --- a/packages/azoth/compose.js +++ b/packages/azoth/compose.js @@ -1 +1 @@ -export * from '@azothjs/runtime/compose'; \ No newline at end of file +export * from '@azoth/maya/compose'; \ No newline at end of file diff --git a/packages/azoth/package.json b/packages/azoth/package.json index 531c6ae..0f754ff 100644 --- a/packages/azoth/package.json +++ b/packages/azoth/package.json @@ -1,6 +1,6 @@ { "name": "azoth", - "version": "1.1.16", + "version": "1.2.0", "description": "Azoth JSX hypermedia", "author": "Marty Nelson", "license": "MIT", @@ -34,7 +34,7 @@ "packageManager": "^pnpm@8.15.1", "dependencies": { "@azothjs/channels": "workspace:*", - "@azothjs/runtime": "workspace:*", + "@azoth/maya": "workspace:*", "@azothjs/vite-plugin": "workspace:*" } } \ No newline at end of file diff --git a/packages/azoth/pnpm-lock.yaml b/packages/azoth/pnpm-lock.yaml index f675bd3..48d4717 100644 --- a/packages/azoth/pnpm-lock.yaml +++ b/packages/azoth/pnpm-lock.yaml @@ -5,12 +5,12 @@ settings: excludeLinksFromLockfile: false dependencies: + '@azoth/maya': + specifier: workspace:* + version: link:../runtime '@azothjs/channels': specifier: workspace:* version: link:../channels - '@azothjs/runtime': - specifier: workspace:* - version: link:../runtime '@azothjs/vite-plugin': specifier: workspace:* version: link:../vite-plugin diff --git a/packages/azoth/runtime.js b/packages/azoth/runtime.js index 9486dbf..9600b63 100644 --- a/packages/azoth/runtime.js +++ b/packages/azoth/runtime.js @@ -1,8 +1,8 @@ export { compose as __compose, createElement as __createElement, -} from '@azothjs/runtime/compose'; +} from '@azoth/maya/compose'; export { renderer as __renderer, -} from '@azothjs/runtime/renderer'; \ No newline at end of file +} from '@azoth/maya/renderer'; \ No newline at end of file diff --git a/packages/azoth/template.js b/packages/azoth/template.js index 5bd7779..1559c83 100644 --- a/packages/azoth/template.js +++ b/packages/azoth/template.js @@ -1 +1 @@ -export * from '@azothjs/runtime/renderer'; \ No newline at end of file +export * from '@azoth/maya/renderer'; \ No newline at end of file diff --git a/packages/channels/package.json b/packages/channels/package.json index b765c36..e2027a6 100644 --- a/packages/channels/package.json +++ b/packages/channels/package.json @@ -1,6 +1,6 @@ { "name": "@azothjs/channels", - "version": "0.1.4", + "version": "0.2.0", "description": "Asynchronous layout channels", "author": "Marty Nelson", "license": "MIT", diff --git a/packages/channels/use.test.jsx b/packages/channels/use.test.jsx index d34ec3b..515d400 100644 --- a/packages/channels/use.test.jsx +++ b/packages/channels/use.test.jsx @@ -258,7 +258,7 @@ describe('async iterator', () => { await find('duchess'); expect(fixture.innerHTML).toMatchInlineSnapshot( - `""` + `""` ); }); diff --git a/packages/compiler/package.json b/packages/compiler/package.json index f16eb02..09fb56a 100644 --- a/packages/compiler/package.json +++ b/packages/compiler/package.json @@ -1,6 +1,6 @@ { - "name": "@azothjs/compiler", - "version": "0.1.1", + "name": "@azoth/thoth", + "version": "0.2.0", "description": "Azoth compiler", "author": "Marty Nelson", "license": "MIT", diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 2ac3193..16a7560 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { - "name": "@azothjs/runtime", - "version": "0.1.3", + "name": "@azoth/maya", + "version": "0.2.0", "description": "Azoth runtime", "author": "Marty Nelson", "license": "MIT", diff --git a/packages/vite-plugin/index.js b/packages/vite-plugin/index.js index d502eca..ddcd27f 100644 --- a/packages/vite-plugin/index.js +++ b/packages/vite-plugin/index.js @@ -1,5 +1,5 @@ import revHash from 'rev-hash'; -import { compile, templateModule, makeTargets, makeRenderer, makeBind } from '@azothjs/compiler'; +import { compile, templateModule, makeTargets, makeRenderer, makeBind } from '@azoth/thoth'; import { createFilter } from '@rollup/pluginutils'; import path from 'node:path'; diff --git a/packages/vite-plugin/package.json b/packages/vite-plugin/package.json index 532363e..1f0cfa9 100644 --- a/packages/vite-plugin/package.json +++ b/packages/vite-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@azothjs/vite-plugin", - "version": "0.1.1", + "version": "0.2.0", "description": "azoth plugins for vite", "author": "Marty Nelson", "license": "MIT", @@ -35,7 +35,7 @@ "vite": "^5.0.12" }, "dependencies": { - "@azothjs/compiler": "workspace:*", + "@azoth/thoth": "workspace:*", "@rollup/pluginutils": "^5.1.0", "rev-hash": "^4.1.0", "source-map": "^0.7.4" diff --git a/packages/vite-plugin/pnpm-lock.yaml b/packages/vite-plugin/pnpm-lock.yaml index 09d2dde..6ffbb2c 100644 --- a/packages/vite-plugin/pnpm-lock.yaml +++ b/packages/vite-plugin/pnpm-lock.yaml @@ -5,7 +5,7 @@ settings: excludeLinksFromLockfile: false dependencies: - '@azothjs/compiler': + '@azoth/thoth': specifier: workspace:* version: link:../compiler '@rollup/pluginutils':