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": {
|
"packages/common": {
|
||||||
"name": "@astro-reactive/common",
|
"name": "@astro-reactive/common",
|
||||||
"version": "0.1.0",
|
"version": "0.1.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
},
|
},
|
||||||
"packages/form": {
|
"packages/form": {
|
||||||
"name": "@astro-reactive/form",
|
"name": "@astro-reactive/form",
|
||||||
"version": "0.6.1",
|
"version": "0.6.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-reactive/common": "^0.1.0",
|
"@astro-reactive/common": "^0.1.1",
|
||||||
"@astro-reactive/validator": "^0.2.1"
|
"@astro-reactive/validator": "^0.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -10166,7 +10166,7 @@
|
||||||
"version": "0.2.1",
|
"version": "0.2.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-reactive/common": "^0.1.0"
|
"@astro-reactive/common": "^0.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/chai": "^4.3.3",
|
"@types/chai": "^4.3.3",
|
||||||
|
@ -10422,7 +10422,7 @@
|
||||||
"@astro-reactive/form": {
|
"@astro-reactive/form": {
|
||||||
"version": "file:packages/form",
|
"version": "file:packages/form",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@astro-reactive/common": "^0.1.0",
|
"@astro-reactive/common": "^0.1.1",
|
||||||
"@astro-reactive/validator": "^0.2.1",
|
"@astro-reactive/validator": "^0.2.1",
|
||||||
"@types/chai": "^4.3.3",
|
"@types/chai": "^4.3.3",
|
||||||
"@types/eslint": "^8.4.6",
|
"@types/eslint": "^8.4.6",
|
||||||
|
@ -10463,7 +10463,7 @@
|
||||||
"@astro-reactive/validator": {
|
"@astro-reactive/validator": {
|
||||||
"version": "file:packages/validator",
|
"version": "file:packages/validator",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@astro-reactive/common": "^0.1.0",
|
"@astro-reactive/common": "^0.1.1",
|
||||||
"@types/chai": "^4.3.3",
|
"@types/chai": "^4.3.3",
|
||||||
"@types/eslint": "^8.4.6",
|
"@types/eslint": "^8.4.6",
|
||||||
"@types/mocha": "^10.0.0",
|
"@types/mocha": "^10.0.0",
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
### v0.1.1
|
||||||
|
- fix broken `ControlConfig`
|
||||||
|
|
||||||
## 0.1.0
|
## 0.1.0
|
||||||
- deprecate `labelPosition` prop
|
- deprecate `labelPosition` prop
|
||||||
- TextArea and Dropdown types
|
- TextArea and Dropdown types
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@astro-reactive/common",
|
"name": "@astro-reactive/common",
|
||||||
"version": "0.1.0",
|
"version": "0.1.1",
|
||||||
"description": "Common code for Astro Reactive Packages",
|
"description": "Common code for Astro Reactive Packages",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
### v0.6.1
|
||||||
|
- fix broken `ControlConfig`
|
||||||
|
|
||||||
### v0.6.1
|
### v0.6.1
|
||||||
- fix wrong dependency version
|
- fix wrong dependency version
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astro-reactive/form",
|
"name": "@astro-reactive/form",
|
||||||
"description": "The Reactive Form component for Astro 🔥",
|
"description": "The Reactive Form component for Astro 🔥",
|
||||||
"version": "0.6.1",
|
"version": "0.6.2",
|
||||||
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
||||||
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/form/README.md",
|
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/form/README.md",
|
||||||
"author": {
|
"author": {
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-reactive/common": "^0.1.0",
|
"@astro-reactive/common": "^0.1.1",
|
||||||
"@astro-reactive/validator": "^0.2.1"
|
"@astro-reactive/validator": "^0.2.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
### v0.2.2
|
||||||
|
- fix broken `ControlConfig`
|
||||||
|
|
||||||
### v0.2.1
|
### v0.2.1
|
||||||
- fix wrong dependency version
|
- fix wrong dependency version
|
||||||
## v0.2.0
|
## v0.2.0
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astro-reactive/validator",
|
"name": "@astro-reactive/validator",
|
||||||
"description": "Form validation library for Astro 🔥",
|
"description": "Form validation library for Astro 🔥",
|
||||||
"version": "0.2.1",
|
"version": "0.2.2",
|
||||||
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
||||||
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/validator/README.md",
|
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/validator/README.md",
|
||||||
"author": {
|
"author": {
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
"astro": "^1.5.0"
|
"astro": "^1.5.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-reactive/common": "^0.1.0"
|
"@astro-reactive/common": "^0.1.1"
|
||||||
},
|
},
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
Loading…
Reference in a new issue