chore: release form, common, validator
This commit is contained in:
parent
1eca8f2e27
commit
2888c766b7
7 changed files with 20 additions and 11 deletions
12
package-lock.json
generated
12
package-lock.json
generated
|
@ -10122,16 +10122,16 @@
|
|||
},
|
||||
"packages/common": {
|
||||
"name": "@astro-reactive/common",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"license": "MIT",
|
||||
"devDependencies": {}
|
||||
},
|
||||
"packages/form": {
|
||||
"name": "@astro-reactive/form",
|
||||
"version": "0.6.1",
|
||||
"version": "0.6.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@astro-reactive/common": "^0.1.0",
|
||||
"@astro-reactive/common": "^0.1.1",
|
||||
"@astro-reactive/validator": "^0.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -10166,7 +10166,7 @@
|
|||
"version": "0.2.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@astro-reactive/common": "^0.1.0"
|
||||
"@astro-reactive/common": "^0.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/chai": "^4.3.3",
|
||||
|
@ -10422,7 +10422,7 @@
|
|||
"@astro-reactive/form": {
|
||||
"version": "file:packages/form",
|
||||
"requires": {
|
||||
"@astro-reactive/common": "^0.1.0",
|
||||
"@astro-reactive/common": "^0.1.1",
|
||||
"@astro-reactive/validator": "^0.2.1",
|
||||
"@types/chai": "^4.3.3",
|
||||
"@types/eslint": "^8.4.6",
|
||||
|
@ -10463,7 +10463,7 @@
|
|||
"@astro-reactive/validator": {
|
||||
"version": "file:packages/validator",
|
||||
"requires": {
|
||||
"@astro-reactive/common": "^0.1.0",
|
||||
"@astro-reactive/common": "^0.1.1",
|
||||
"@types/chai": "^4.3.3",
|
||||
"@types/eslint": "^8.4.6",
|
||||
"@types/mocha": "^10.0.0",
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
### v0.1.1
|
||||
- fix broken `ControlConfig`
|
||||
|
||||
## 0.1.0
|
||||
- deprecate `labelPosition` prop
|
||||
- TextArea and Dropdown types
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astro-reactive/common",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "Common code for Astro Reactive Packages",
|
||||
"main": "index.js",
|
||||
"devDependencies": {},
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
### v0.6.1
|
||||
- fix broken `ControlConfig`
|
||||
|
||||
### v0.6.1
|
||||
- fix wrong dependency version
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astro-reactive/form",
|
||||
"description": "The Reactive Form component for Astro 🔥",
|
||||
"version": "0.6.1",
|
||||
"version": "0.6.2",
|
||||
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
||||
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/form/README.md",
|
||||
"author": {
|
||||
|
@ -56,7 +56,7 @@
|
|||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@astro-reactive/common": "^0.1.0",
|
||||
"@astro-reactive/common": "^0.1.1",
|
||||
"@astro-reactive/validator": "^0.2.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
### v0.2.2
|
||||
- fix broken `ControlConfig`
|
||||
|
||||
### v0.2.1
|
||||
- fix wrong dependency version
|
||||
## v0.2.0
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astro-reactive/validator",
|
||||
"description": "Form validation library for Astro 🔥",
|
||||
"version": "0.2.1",
|
||||
"version": "0.2.2",
|
||||
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
||||
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/validator/README.md",
|
||||
"author": {
|
||||
|
@ -53,7 +53,7 @@
|
|||
"astro": "^1.5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astro-reactive/common": "^0.1.0"
|
||||
"@astro-reactive/common": "^0.1.1"
|
||||
},
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
|
|
Loading…
Reference in a new issue