alinea 0.0.2 → 0.0.5
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/dist/cli.d.ts +2 -0
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +16 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +1 -0
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/package.json +16 -16
package/dist/cli.d.ts
ADDED
package/dist/cli.js
CHANGED
package/dist/cli.js.map
CHANGED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { createConfig, schema, type, Tree, workspace } from '@alinea/core';
|
|
2
|
+
export type { Config, Schema, TextDoc, Type, Workspace } from '@alinea/core';
|
|
3
|
+
export { MediaSchema } from '@alinea/dashboard/schema/MediaSchema';
|
|
4
|
+
export { BrowserPreview } from '@alinea/dashboard/view/preview/BrowserPreview';
|
|
5
|
+
export { code } from '@alinea/input.code';
|
|
6
|
+
export { link } from '@alinea/input.link';
|
|
7
|
+
export { list } from '@alinea/input.list';
|
|
8
|
+
export { number } from '@alinea/input.number';
|
|
9
|
+
export { path } from '@alinea/input.path';
|
|
10
|
+
export { richText } from '@alinea/input.richtext';
|
|
11
|
+
export { select } from '@alinea/input.select';
|
|
12
|
+
export { tab, tabs } from '@alinea/input.tabs';
|
|
13
|
+
export { text } from '@alinea/input.text';
|
|
14
|
+
export { Collection, Cursor, Expr } from '@alinea/store';
|
|
15
|
+
import type { Store } from '@alinea/store';
|
|
16
|
+
export declare type TypeOf<T> = Store.TypeOf<T>;
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// src/index.ts
|
|
1
|
+
// packages/alinea/src/index.ts
|
|
2
2
|
import { createConfig, schema, type, Tree, workspace } from "@alinea/core";
|
|
3
3
|
import { MediaSchema } from "@alinea/dashboard/schema/MediaSchema.js";
|
|
4
4
|
import { BrowserPreview } from "@alinea/dashboard/view/preview/BrowserPreview.js";
|
package/dist/index.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["
|
|
3
|
+
"sources": ["../../../packages/alinea/src/index.ts"],
|
|
4
4
|
"sourcesContent": ["// Config creation\nexport {createConfig, schema, type, Tree, workspace} from '@alinea/core'\nexport type {Config, Schema, TextDoc, Type, Workspace} from '@alinea/core'\n\n// Dashboard\nexport {MediaSchema} from '@alinea/dashboard/schema/MediaSchema'\nexport {BrowserPreview} from '@alinea/dashboard/view/preview/BrowserPreview'\n\n// Included inputs\nexport {code} from '@alinea/input.code'\nexport {link} from '@alinea/input.link'\nexport {list} from '@alinea/input.list'\nexport {number} from '@alinea/input.number'\nexport {path} from '@alinea/input.path'\nexport {richText} from '@alinea/input.richtext'\nexport {select} from '@alinea/input.select'\nexport {tab, tabs} from '@alinea/input.tabs'\nexport {text} from '@alinea/input.text'\n\n// Store\nexport {Collection, Cursor, Expr} from '@alinea/store'\nimport type {Store} from '@alinea/store'\nexport type TypeOf<T> = Store.TypeOf<T>\n"],
|
|
5
5
|
"mappings": ";AACA;AAIA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;",
|
|
6
6
|
"names": []
|
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Backend, DevServer, Server } from '@alinea/backend';
|
package/dist/server.js
CHANGED
package/dist/server.js.map
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bin": "./dist/cli.js",
|
|
3
3
|
"name": "alinea",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.5",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -27,21 +27,21 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@alinea/backend": "0.0.
|
|
31
|
-
"@alinea/cli": "0.0.
|
|
32
|
-
"@alinea/core": "0.0.
|
|
33
|
-
"@alinea/css": "0.0.
|
|
34
|
-
"@alinea/dashboard": "0.0.
|
|
35
|
-
"@alinea/input.code": "0.0.
|
|
36
|
-
"@alinea/input.link": "0.0.
|
|
37
|
-
"@alinea/input.list": "0.0.
|
|
38
|
-
"@alinea/input.number": "0.0.
|
|
39
|
-
"@alinea/input.path": "0.0.
|
|
40
|
-
"@alinea/input.richtext": "0.0.
|
|
41
|
-
"@alinea/input.select": "0.0.
|
|
42
|
-
"@alinea/input.tabs": "0.0.
|
|
43
|
-
"@alinea/input.text": "0.0.
|
|
30
|
+
"@alinea/backend": "0.0.5",
|
|
31
|
+
"@alinea/cli": "0.0.5",
|
|
32
|
+
"@alinea/core": "0.0.5",
|
|
33
|
+
"@alinea/css": "0.0.5",
|
|
34
|
+
"@alinea/dashboard": "0.0.5",
|
|
35
|
+
"@alinea/input.code": "0.0.5",
|
|
36
|
+
"@alinea/input.link": "0.0.5",
|
|
37
|
+
"@alinea/input.list": "0.0.5",
|
|
38
|
+
"@alinea/input.number": "0.0.5",
|
|
39
|
+
"@alinea/input.path": "0.0.5",
|
|
40
|
+
"@alinea/input.richtext": "0.0.5",
|
|
41
|
+
"@alinea/input.select": "0.0.5",
|
|
42
|
+
"@alinea/input.tabs": "0.0.5",
|
|
43
|
+
"@alinea/input.text": "0.0.5",
|
|
44
44
|
"@alinea/sqlite-wasm": "^0.1.4",
|
|
45
|
-
"@alinea/store": "0.0.
|
|
45
|
+
"@alinea/store": "0.0.5"
|
|
46
46
|
}
|
|
47
47
|
}
|