alinea 0.0.7 → 0.0.10
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 +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +2 -2
- package/package.json +18 -19
package/dist/cli.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import '@alinea/cli/bin
|
|
2
|
+
import '@alinea/cli/bin';
|
package/dist/cli.js
CHANGED
package/dist/cli.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../packages/alinea/src/cli.ts"],
|
|
4
|
-
"sourcesContent": ["#!/usr/bin/env node\n\nimport '@alinea/cli/bin
|
|
4
|
+
"sourcesContent": ["#!/usr/bin/env node\n\nimport '@alinea/cli/bin'\n"],
|
|
5
5
|
"mappings": ";;;AAEA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export type { Config, Schema, TextDoc, Type } from '@alinea/core';
|
|
|
3
3
|
export { MediaSchema } from '@alinea/dashboard/schema/MediaSchema';
|
|
4
4
|
export { BrowserPreview } from '@alinea/dashboard/view/preview/BrowserPreview';
|
|
5
5
|
export { code } from '@alinea/input.code';
|
|
6
|
+
export { check } from '@alinea/input.check';
|
|
6
7
|
export { link } from '@alinea/input.link';
|
|
7
8
|
export { list } from '@alinea/input.list';
|
|
8
9
|
export { number } from '@alinea/input.number';
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
// packages/alinea/src/index.ts
|
|
2
2
|
import { createConfig, schema, type, Tree, workspace, Workspace, root, Root } from "@alinea/core";
|
|
3
|
-
import { MediaSchema } from "@alinea/dashboard/schema/MediaSchema
|
|
4
|
-
import { BrowserPreview } from "@alinea/dashboard/view/preview/BrowserPreview
|
|
3
|
+
import { MediaSchema } from "@alinea/dashboard/schema/MediaSchema";
|
|
4
|
+
import { BrowserPreview } from "@alinea/dashboard/view/preview/BrowserPreview";
|
|
5
5
|
import { code } from "@alinea/input.code";
|
|
6
|
+
import { check } from "@alinea/input.check";
|
|
6
7
|
import { link } from "@alinea/input.link";
|
|
7
8
|
import { list } from "@alinea/input.list";
|
|
8
9
|
import { number } from "@alinea/input.number";
|
|
@@ -23,6 +24,7 @@ export {
|
|
|
23
24
|
Tree,
|
|
24
25
|
Welcome,
|
|
25
26
|
Workspace,
|
|
27
|
+
check,
|
|
26
28
|
code,
|
|
27
29
|
createConfig,
|
|
28
30
|
link,
|
package/dist/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../packages/alinea/src/index.ts"],
|
|
4
|
-
"sourcesContent": ["// Config creation\nexport {createConfig, schema, type, Tree, workspace, Workspace, root, Root} from '@alinea/core'\nexport type {Config, Schema, TextDoc, Type} 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\n// Used in init template\nexport {Welcome} from './Welcome'\n"],
|
|
5
|
-
"mappings": ";AACA;AAIA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;AAKA;",
|
|
4
|
+
"sourcesContent": ["// Config creation\nexport {createConfig, schema, type, Tree, workspace, Workspace, root, Root} from '@alinea/core'\nexport type {Config, Schema, TextDoc, Type} 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 {check} from '@alinea/input.check'\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\n// Used in init template\nexport {Welcome} from './Welcome'\n"],
|
|
5
|
+
"mappings": ";AACA;AAIA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;AAKA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
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.10",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
"type": "module",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": "./dist/index.js",
|
|
13
|
-
"./*": "./dist
|
|
14
|
-
"./server": "./dist/server.js"
|
|
13
|
+
"./*": "./dist/*.js"
|
|
15
14
|
},
|
|
16
15
|
"files": [
|
|
17
16
|
"dist"
|
|
@@ -27,22 +26,22 @@
|
|
|
27
26
|
}
|
|
28
27
|
},
|
|
29
28
|
"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.
|
|
29
|
+
"@alinea/backend": "0.0.10",
|
|
30
|
+
"@alinea/cli": "0.0.10",
|
|
31
|
+
"@alinea/core": "0.0.10",
|
|
32
|
+
"@alinea/css": "0.0.10",
|
|
33
|
+
"@alinea/dashboard": "0.0.10",
|
|
34
|
+
"@alinea/input.code": "0.0.10",
|
|
35
|
+
"@alinea/input.link": "0.0.10",
|
|
36
|
+
"@alinea/input.list": "0.0.10",
|
|
37
|
+
"@alinea/input.number": "0.0.10",
|
|
38
|
+
"@alinea/input.path": "0.0.10",
|
|
39
|
+
"@alinea/input.richtext": "0.0.10",
|
|
40
|
+
"@alinea/input.select": "0.0.10",
|
|
41
|
+
"@alinea/input.tabs": "0.0.10",
|
|
42
|
+
"@alinea/input.text": "0.0.10",
|
|
44
43
|
"@alinea/sqlite-wasm": "^0.1.5",
|
|
45
|
-
"@alinea/store": "0.0.
|
|
46
|
-
"@alinea/ui": "0.0.
|
|
44
|
+
"@alinea/store": "0.0.10",
|
|
45
|
+
"@alinea/ui": "0.0.10"
|
|
47
46
|
}
|
|
48
47
|
}
|