Skip to content

Commit

Permalink
release: v0.2.3-0
Browse files Browse the repository at this point in the history
  • Loading branch information
Muluk-m committed Sep 3, 2022
1 parent 67c1307 commit dbac056
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.2.3-0](https://github.com/Muluk-m/schema-form/compare/v0.2.2-1...v0.2.3-0) (2022-09-03)


### Features

* ignore validator warning ([d81fa4b](https://github.com/Muluk-m/schema-form/commit/d81fa4b5f199e54b7c7de8c39319d6c08a110d02))



## 0.0.1-beta.1 (2022-08-24)

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "schema-form",
"version": "0.2.2-1",
"version": "0.2.3-0",
"description": "An engine that generates forms based on JSON Schema",
"repository": "https://github.com/Muluk-m/schema-form",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions packages/vue3-example/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "example",
"private": true,
"version": "0.2.2-1",
"version": "0.2.3-0",
"type": "module",
"scripts": {
"start": "vite --force",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"v3-schema-form": "workspace:*",
"v3-schema-form": "0.2.3-0",
"vant": "^3.5.1",
"vue": "^3.2.37"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vue3-schema-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "v3-schema-form",
"version": "0.2.2-1",
"version": "0.2.3-0",
"description": "An engine that generates forms based on JSON Schema",
"keywords": [
"vue",
Expand Down
5 changes: 4 additions & 1 deletion scripts/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ const updateDeps = (pkg, depType, version) => {
const deps = pkg[depType];
if (!deps) return;
Object.keys(deps).forEach((dep) => {
if (dep.endsWith('schema-form') && packages.endsWith(dep.replace(/schema-form$/, ''))) {
if (
dep.endsWith('schema-form')
// && packages.includes(dep.replace(/schema-form$/, ''))
) {
console.log(chalk.yellow(`${pkg.name} -> ${depType} -> ${dep}@${version}`));
deps[dep] = version;
}
Expand Down

0 comments on commit dbac056

Please sign in to comment.