Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed May 1, 2023
1 parent 1bd4e9d commit d7d3705
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"build:js": "yakumo esbuild core",
"build:dts": "yakumo tsc core",
"build": "yarn build:js && yarn build:dts",
"dev": "vuepress dev docs --open",
"build:docs": "vuepress build docs",
"serve": "serve docs/.vuepress/dist",
"dev": "vitepress dev docs --open",
"build:docs": "vitepress build docs",
"serve": "serve docs/.vitepress/dist",
"bump": "yakumo version",
"dep": "yakumo upgrade",
"pub": "yakumo publish",
Expand All @@ -25,20 +25,19 @@
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^18.15.3",
"@vuepress/plugin-shiki": "2.0.0-beta.49",
"@types/node": "^18.16.0",
"c8": "^7.13.0",
"chai": "^4.3.7",
"element-plus": "2.2.17",
"esbuild": "^0.17.12",
"element-plus": "2.3.4",
"esbuild": "^0.17.18",
"esbuild-register": "^3.4.2",
"marked-vue": "^1.2.2",
"marked-vue": "^1.2.3",
"mocha": "^9.2.2",
"serve": "^13.0.4",
"shx": "^0.3.4",
"typescript": "^4.9.5",
"vuepress": "2.0.0-beta.49",
"yakumo": "^0.3.10",
"typescript": "^5.0.4",
"vitepress": "1.0.0-alpha.73",
"yakumo": "^0.3.13",
"yakumo-esbuild": "^0.3.22",
"yakumo-mocha": "^0.3.1",
"yakumo-publish": "^0.3.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "schemastery-vue",
"description": "Type driven schema validator",
"version": "4.0.0-alpha.5",
"version": "4.0.0",
"main": "src/index.ts",
"repository": {
"type": "git",
Expand Down
4 changes: 4 additions & 0 deletions packages/form/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { App, Component } from 'vue'
import SchemaBase from './base.vue'
import SchemaPrimitive from './primitive.vue'
import Bitset from './extensions/bitset.vue'
import Group from './extensions/group.vue'
import Intersect from './extensions/intersect.vue'
Expand All @@ -10,6 +12,8 @@ import Tuple from './extensions/tuple.vue'
import Union from './extensions/union.vue'
import Schema from './schema.vue'

export { SchemaBase, SchemaPrimitive }

export * from './icons'
export * from './utils'

Expand Down

0 comments on commit d7d3705

Please sign in to comment.