Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"trailingComma": "es5"
},
"devDependencies": {
"@babel/core": "^7.27.7",
"@babel/types": "^7.27.7",
"@babel/core": "^7.28.0",
"@babel/types": "^7.28.2",
"@cypress/browserify-preprocessor": "^3.0.2",
"@next-shared/common-bricks": "^0.54.0",
"@types/doctrine": "^0.0.9",
Expand Down Expand Up @@ -77,8 +77,8 @@
"packages/*"
],
"resolutions": {
"@babel/parser": "^7.27.7",
"@babel/runtime": "^7.27.6",
"@babel/parser": "^7.28.0",
"@babel/runtime": "^7.28.2",
"@types/react": "^18.3.23",
"lodash": "^4.17.21",
"moment": "^2.30.1"
Expand Down
8 changes: 4 additions & 4 deletions packages/babel-preset-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
},
"sideEffects": false,
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-transform-runtime": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/runtime": "^7.27.6"
"@babel/runtime": "^7.28.2"
}
}
4 changes: 2 additions & 2 deletions packages/build-next-bricks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"node": ">=16"
},
"dependencies": {
"@babel/parser": "^7.27.7",
"@babel/traverse": "^7.27.7",
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"@next-core/babel-preset-next": "^1.0.25",
"@svgr/webpack": "^8.1.0",
"babel-loader": "^10.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/build-next-libs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
},
"sideEffects": false,
"dependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.7",
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@next-core/babel-preset-next": "^1.0.25",
"execa": "^5.1.1",
"rimraf": "^6.0.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/cook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"sideEffects": false,
"dependencies": {
"@babel/parser": "^7.27.7"
"@babel/parser": "^7.28.0"
},
"devDependencies": {
"@next-core/build-next-libs": "^1.0.24",
Expand Down
4 changes: 3 additions & 1 deletion packages/cook/src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
VariableDeclaration,
type ArrowFunctionExpression,
type FunctionExpression,
type VoidPattern,
} from "@babel/types";

export type EstreeNode =
Expand All @@ -23,7 +24,7 @@ export type EstreeNode =
| EstreeChainExpression
| EstreeLiteral;

export type EstreeLVal = LVal | EstreeObjectPattern;
export type EstreeLVal = LVal | EstreeObjectPattern | VoidPattern;

export type EstreeObjectExpression = Omit<ObjectExpression, "properties"> & {
properties: (EstreeProperty | SpreadElement)[];
Expand Down Expand Up @@ -60,6 +61,7 @@ export type FunctionDefinition = FunctionExpression | ArrowFunctionExpression;

export type NodeWithBoundNames =
| LVal
| VoidPattern
| VariableDeclaration
| FunctionDeclaration;

Expand Down
2 changes: 1 addition & 1 deletion packages/test-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"node": ">=16"
},
"dependencies": {
"@babel/core": "^7.27.7",
"@babel/core": "^7.28.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
Expand Down
395 changes: 203 additions & 192 deletions yarn.lock

Large diffs are not rendered by default.

Loading