Skip to content

Commit

Permalink
🦺 Updating: [vest-utils]: (1.0.2), [context]: (3.0.11), [vestjs-runti…
Browse files Browse the repository at this point in the history
…me]: (1.0.2), [vast]: (1.0.20), [n4s]: (5.0.4), [vest]: (5.0.4), [anyone]: (1.0.10)

a0bd0c4  vx: correctly track files (Evyatar)
5aa51c6  types(vest): add more method overloads to  type (#1070) (Dmitry Maganov)
  • Loading branch information
ealush committed Sep 9, 2023
1 parent a0bd0c4 commit 9181167
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 37 deletions.
6 changes: 5 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ nmMode: hardlinks-local

nodeLinker: node-modules

npmAlwaysAuth: true

npmAuthToken: 3ca2fd4b-79dc-43dc-9f8d-6070356d26b3

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: '@yarnpkg/plugin-interactive-tools'
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-3.5.1.cjs
4 changes: 2 additions & 2 deletions packages/anyone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"license": "MIT",
"main": "./dist/cjs/anyone.js",
"types": "./types/anyone.d.ts",
"version": "1.0.9",
"version": "1.0.10",
"author": "ealush",
"scripts": {
"test": "vx test",
"build": "vx build",
"release": "vx release"
},
"dependencies": {
"vest-utils": "^1.0.0"
"vest-utils": "^1.0.2"
},
"module": "./dist/es/anyone.production.js",
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions packages/context/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.0.10",
"version": "3.0.11",
"license": "MIT",
"main": "./dist/cjs/context.js",
"types": "./types/context.d.ts",
Expand All @@ -11,7 +11,7 @@
"release": "vx release"
},
"dependencies": {
"vest-utils": "^1.0.0"
"vest-utils": "^1.0.2"
},
"module": "./dist/es/context.production.js",
"exports": {
Expand Down
6 changes: 3 additions & 3 deletions packages/n4s/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.0.3",
"version": "5.0.4",
"license": "MIT",
"main": "./dist/cjs/n4s.js",
"types": "./types/n4s.d.ts",
Expand All @@ -21,8 +21,8 @@
"release": "vx release"
},
"dependencies": {
"context": "^3.0.7",
"vest-utils": "^1.0.0"
"context": "^3.0.11",
"vest-utils": "^1.0.2"
},
"devDependencies": {
"@types/validator": "^13.11.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/vast/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.19",
"version": "1.0.20",
"license": "MIT",
"main": "./dist/cjs/vast.js",
"types": "./types/vast.d.ts",
Expand All @@ -19,7 +19,7 @@
"url": "https://github.com/ealush/vest.git/issues"
},
"dependencies": {
"vest-utils": "^1.0.0"
"vest-utils": "^1.0.2"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vest-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.1",
"version": "1.0.2",
"name": "vest-utils",
"author": "ealush",
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions packages/vest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vest",
"version": "5.0.3",
"version": "5.0.4",
"description": "Declarative Form Validations Framework",
"license": "MIT",
"author": "ealush",
Expand Down Expand Up @@ -36,11 +36,11 @@
"url": "https://github.com/ealush/vest.git/issues"
},
"dependencies": {
"context": "^3.0.8",
"n4s": "^5.0.1",
"vast": "^1.0.14",
"vest-utils": "^1.0.0",
"vestjs-runtime": "^1.0.0"
"context": "^3.0.11",
"n4s": "^5.0.4",
"vast": "^1.0.20",
"vest-utils": "^1.0.2",
"vestjs-runtime": "^1.0.2"
},
"exports": {
"./promisify": {
Expand Down
6 changes: 3 additions & 3 deletions packages/vestjs-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vestjs-runtime",
"version": "1.0.1",
"version": "1.0.2",
"description": "Internal runtime module used by Vest",
"license": "MIT",
"author": "ealush",
Expand All @@ -18,8 +18,8 @@
"url": "https://github.com/ealush/vest.git/issues"
},
"dependencies": {
"context": "^3.0.8",
"vest-utils": "^1.0.0"
"context": "^3.0.11",
"vest-utils": "^1.0.2"
},
"exports": {
"./test-utils": {
Expand Down
4 changes: 4 additions & 0 deletions vx/scripts/release/steps/push_to_latest_branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
git config --global user.email $EMAIL_ADDRESS --replace-all
git config --global user.name $GIT_NAME


echo "Fetching stable for reference"
git fetch https://$PUBLIC_REPO_TOKEN@github.com/$GITHUB_REPOSITORY.git $STABLE_BRANCH

Expand All @@ -12,6 +13,9 @@ git rebase $STABLE_BRANCH
echo "Deleting local stable branch"
git branch -D $STABLE_BRANCH || echo "Failed to delete $STABLE_BRANCH. Continuing..."

echo "Rebuilding yarn.lock"
yarn

echo "Checking out new local stable branch"
git checkout -b $STABLE_BRANCH

Expand Down
34 changes: 17 additions & 17 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5341,7 +5341,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "anyone@workspace:packages/anyone"
dependencies:
vest-utils: ^1.0.0
vest-utils: ^1.0.2
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -6618,11 +6618,11 @@ __metadata:
languageName: node
linkType: hard

"context@^3.0.7, context@^3.0.8, context@workspace:packages/context":
"context@^3.0.11, context@workspace:packages/context":
version: 0.0.0-use.local
resolution: "context@workspace:packages/context"
dependencies:
vest-utils: ^1.0.0
vest-utils: ^1.0.2
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -11614,14 +11614,14 @@ __metadata:
languageName: node
linkType: hard

"n4s@^5.0.1, n4s@workspace:packages/n4s":
"n4s@^5.0.4, n4s@workspace:packages/n4s":
version: 0.0.0-use.local
resolution: "n4s@workspace:packages/n4s"
dependencies:
"@types/validator": ^13.11.1
context: ^3.0.7
context: ^3.0.11
validator: ^13.11.0
vest-utils: ^1.0.0
vest-utils: ^1.0.2
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -15528,15 +15528,15 @@ __metadata:
languageName: node
linkType: hard

"vast@^1.0.14, vast@workspace:packages/vast":
"vast@^1.0.20, vast@workspace:packages/vast":
version: 0.0.0-use.local
resolution: "vast@workspace:packages/vast"
dependencies:
vest-utils: ^1.0.0
vest-utils: ^1.0.2
languageName: unknown
linkType: soft

"vest-utils@^1.0.0, vest-utils@workspace:packages/vest-utils":
"vest-utils@^1.0.2, vest-utils@workspace:packages/vest-utils":
version: 0.0.0-use.local
resolution: "vest-utils@workspace:packages/vest-utils"
languageName: unknown
Expand All @@ -15553,20 +15553,20 @@ __metadata:
version: 0.0.0-use.local
resolution: "vest@workspace:packages/vest"
dependencies:
context: ^3.0.8
n4s: ^5.0.1
vast: ^1.0.14
vest-utils: ^1.0.0
vestjs-runtime: ^1.0.0
context: ^3.0.11
n4s: ^5.0.4
vast: ^1.0.20
vest-utils: ^1.0.2
vestjs-runtime: ^1.0.2
languageName: unknown
linkType: soft

"vestjs-runtime@^1.0.0, vestjs-runtime@workspace:packages/vestjs-runtime":
"vestjs-runtime@^1.0.2, vestjs-runtime@workspace:packages/vestjs-runtime":
version: 0.0.0-use.local
resolution: "vestjs-runtime@workspace:packages/vestjs-runtime"
dependencies:
context: ^3.0.8
vest-utils: ^1.0.0
context: ^3.0.11
vest-utils: ^1.0.2
languageName: unknown
linkType: soft

Expand Down

2 comments on commit 9181167

@vercel
Copy link

@vercel vercel bot commented on 9181167 Sep 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vest-next – ./website

vest-website.vercel.app
vest-next-ealush.vercel.app
vest-next-git-latest-ealush.vercel.app
vest-next.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 9181167 Sep 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vest – ./website

vest-git-latest-ealush.vercel.app
www.vestjs.dev
vest.vercel.app
vest-ealush.vercel.app
vestjs.dev

Please sign in to comment.