Releases: mathix420/vuito
Releases · mathix420/vuito
v2.1.1
v2.1.0
v2.0.8
Changes
- Dependency bump
Commits
- f472c9d: [FIX] broken link in docs (Arnaud Gissinger)
- 2380189: [FIX] og image (Arnaud Gissinger)
- 5abd4a0: [ADD] nuxt studio (Arnaud Gissinger)
- 874459b: Merge branch 'master' of github.com:mathix420/vuito (Arnaud Gissinger)
- b5fcbd1: [ADD] robots.txt (Arnaud Gissinger)
- 5b96071: [ADD] dependabot.yml (Arnaud Gissinger)
- be8f7b9: Bump @babel/traverse from 7.22.8 to 7.23.5 (dependabot[bot]) #3
- 1f11922: Bump lerna from 7.4.2 to 8.0.0 (dependabot[bot]) #4
- 5ed4eba: Bump @typescript-eslint/eslint-plugin from 6.12.0 to 6.13.1 (dependabot[bot]) #6
- 9ce8da9: Bump @typescript-eslint/parser from 6.12.0 to 6.13.1 (dependabot[bot]) #7
- fdcbe94: Bump postcss from 8.4.27 to 8.4.31 (dependabot[bot]) #8
- c743005: [MERGE] pull request #3 from mathix420/dependabot/npm_and_yarn/babel/traverse-7.23.5 (Arnaud Gissinger) #3
- 69c0d85: [MERGE] pull request #4 from mathix420/dependabot/npm_and_yarn/lerna-8.0.0 (Arnaud Gissinger) #4
- a2e8e6e: [MERGE] pull request #6 from mathix420/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-6.13.1 (Arnaud Gissinger) #6
- 9134f80: [MERGE] pull request #7 from mathix420/dependabot/npm_and_yarn/typescript-eslint/parser-6.13.1 (Arnaud Gissinger) #7
- 9c46f3c: [MERGE] pull request #8 from mathix420/dependabot/npm_and_yarn/postcss-8.4.31 (Arnaud Gissinger) #8
- e0407c2: [UPDATE] package lock (Arnaud Gissinger)
- 1e9ed46: Bump eslint from 8.54.0 to 8.55.0 (dependabot[bot]) #9
- 738b847: Bump eslint-config-prettier from 9.0.0 to 9.1.0 (dependabot[bot]) #10
- c890f8a: Bump @typescript-eslint/parser from 6.13.1 to 6.13.2 (dependabot[bot]) #12
- ec1a7f3: Bump rollup from 3.27.2 to 3.29.4 (dependabot[bot]) #14
- 5564aa2: Bump prettier from 3.1.0 to 3.1.1 (dependabot[bot]) #16
- bb3685b: [MERGE] pull request #12 from mathix420/dependabot/npm_and_yarn/typescript-eslint/parser-6.13.2 (Arnaud Gissinger) #12
- cba78e1: Bump typescript from 5.3.2 to 5.3.3 (dependabot[bot]) #13
- 09ced35: Bump @typescript-eslint/eslint-plugin from 6.13.1 to 6.13.2 (dependabot[bot]) #15
- 19a7840: [MERGE] pull request #13 from mathix420/dependabot/npm_and_yarn/typescript-5.3.3 (Arnaud Gissinger) #13
- 1df88d7: [MERGE] pull request #14 from mathix420/dependabot/npm_and_yarn/rollup-3.29.4 (Arnaud Gissinger) #14
- 0212e7b: [MERGE] pull request #15 from mathix420/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-6.13.2 (Arnaud Gissinger) #15
- 726dc5c: [MERGE] pull request #16 from mathix420/dependabot/npm_and_yarn/prettier-3.1.1 (Arnaud Gissinger) #16
- 3353dc4: Bump @typescript-eslint/parser from 6.13.2 to 6.14.0 (dependabot[bot]) #17
- 0c5e62f: Bump lerna from 8.0.0 to 8.0.1 (dependabot[bot]) #18
- b96aa61: Bump @types/jest from 29.5.10 to 29.5.11 (dependabot[bot]) #19
- 0dc4d99: Bump eslint from 8.55.0 to 8.56.0 (dependabot[bot]) #20
- 3b76bc3: Bump @typescript-eslint/eslint-plugin from 6.13.2 to 6.14.0 (dependabot[bot]) #21
- 693b1f9: [BUMP] deps (Arnaud Gissinger)
- a2124c9: v2.0.8 (Arnaud Gissinger)
v2.0.7
New docs is out 🥳
Commits
v2.0.6
v2.0.5
v2.0.4
v2.0.3
v2.0.2
Commits
v2.0.1
Breaking changes
Use templateify
method instead of Template
class
import { templateify, required, minLength, maxLength } from 'vuito';
export const signIn = templateify({
username: [
{ test: required, message: 'Please enter a username.' },
{ test: minLength(3), message: 'Username is too short.' },
{ test: maxLength(20), message: 'Username is too big.' },
],
password: [
{ test: required, message: 'Please enter a password.' },
{ test: minLength(12), message: 'Password is too short.' },
]
});
Fix the following issues
- Fix #1
Commits
- 403a894: [UPDATE] package-lock.json (Arnaud Gissinger)
- 46b30f1: [UPDATE] eslint and prettier config (Arnaud Gissinger)
- b5c4903: [UPDATE] docs (Arnaud Gissinger)
- d069b6b: [FIX] vscode eslint config (Arnaud Gissinger)
- 1f1dd97: [UPDATE] keywords (Arnaud Gissinger)
- a38aedf: [ADD] demo to docs (Arnaud Gissinger)
- 4521c98: [UPDATE] demo link in README (Arnaud Gissinger)
- 8f91632: [UPDATE] better syntax (Arnaud Gissinger)
- 6da94c9: [UPDATE] new npm version (Arnaud Gissinger)
- 2a86761: [FIX] new fct templateify (Arnaud Gissinger)
- c070aa5: [UPDATE] tsconfig use ES6 as target (Arnaud Gissinger)
- 2087e1d: v2.0.0 (Arnaud Gissinger)
- 9bfa622: [UPDATE] docs (Arnaud Gissinger)
- 5ed5fce: [FIX] stupid mistake (leaving console.log ..) (Arnaud Gissinger)
- 6d2077b: v2.0.1 (Arnaud Gissinger)