-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #311 from bytedance/feat/lynx3
支持分类页装修
- Loading branch information
Showing
47 changed files
with
883 additions
and
765 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
node-version: [14.18.0] | ||
node-version: [18.17.1] | ||
|
||
steps: | ||
# prepare env | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ yarn-error.log* | |
|
||
.yarn | ||
.yalc | ||
yalc.lock | ||
|
||
tsconfig.tsbuildinfo | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# mona | ||
|
||
mona 是抖店开放平台推出的抖店应用跨端开发方案,支持使用**React 框架**来开发应用,以求达到一次开发处处运行 | ||
mona 是抖店开放平台推出的抖店应用跨端开发方案,支持使用**React 框架**来开发应用,以求达到一次开发处处运行的目的 | ||
|
||
详细文档请点击[这里](https://op.jinritemai.com/docs/mona-docs/1169/2708) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "0.3.38", | ||
"version": "0.3.39", | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
"command": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,9 @@ | |
"test": "jest", | ||
"test:coverage": "jest --coverage", | ||
"test:c": "jest --coverage", | ||
"release": "node ./scripts/release.js", | ||
"bnpm:sync": "node ./scripts/bnpmSync.js" | ||
"release": "sh scripts/publish.sh", | ||
"bnpm:sync": "node ./scripts/bnpmSync.js", | ||
"publish:local": "lerna exec -- yalc publish" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -32,16 +33,16 @@ | |
], | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=14" | ||
"node": ">=18" | ||
}, | ||
"devDependencies": { | ||
"@testing-library/jest-dom": "^5.16.1", | ||
"@types/enzyme": "^3.10.10", | ||
"@types/jest": "^27.0.2", | ||
"@types/react-test-renderer": "^17.0.1", | ||
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6", | ||
"canvas": "^2.8.0", | ||
"chalk": "4.1.2", | ||
"concurrently": "^7.6.0", | ||
"enzyme": "^3.11.0", | ||
"execa": "5.1.1", | ||
"identity-obj-proxy": "^3.0.0", | ||
|
@@ -54,7 +55,8 @@ | |
"semver": "^7.3.5", | ||
"ts-jest": "^27.1.3", | ||
"ts-node": "^10.4.0", | ||
"concurrently": "^7.6.0", | ||
"typescript": "^4.4.4" | ||
"ts-patch": "^3.2.1", | ||
"typescript": "5.6.3", | ||
"typescript-transform-paths": "^3.5.2" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@bytedance/mona-cli", | ||
"version": "0.3.38", | ||
"version": "0.3.39", | ||
"displayName": "mona", | ||
"description": "Merchant app's developing and building tools", | ||
"main": "./bin/mona", | ||
|
@@ -20,8 +20,8 @@ | |
"author": "[email protected]", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@bytedance/mona-cli-commands": "0.3.38", | ||
"@bytedance/mona-manager": "0.3.38" | ||
"@bytedance/mona-cli-commands": "^0.3.39", | ||
"@bytedance/mona-manager": "^0.3.39" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^16.4.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@bytedance/mona-cli-commands", | ||
"version": "0.3.38", | ||
"version": "0.3.39", | ||
"displayName": "mona-cli-commands", | ||
"description": "mona-cli commands plugins for mona-manager", | ||
"main": "./dist/index", | ||
|
@@ -16,8 +16,8 @@ | |
"author": "[email protected]", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@bytedance/mona-manager": "0.3.38", | ||
"@bytedance/mona-shared": "0.3.38", | ||
"@bytedance/mona-manager": "^0.3.39", | ||
"@bytedance/mona-shared": "^0.3.39", | ||
"@koa/cors": "^4.0.0", | ||
"@koa/router": "^12.0.0", | ||
"axios": "^1.6.5", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "@bytedance/mona-manager-plugins-shared", | ||
"displayName": "mona-manager-plugins-shared", | ||
"version": "0.3.38", | ||
"version": "0.3.39", | ||
"description": "mona-manager plugins shared utils and plugins", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.js", | ||
"scripts": { | ||
"build": "yarn clean && ttsc -b", | ||
"start": "ttsc -b -w", | ||
"build": "yarn clean && tspc -b", | ||
"start": "tspc -b -w", | ||
"clean": "rm -rf dist", | ||
"test": "jest" | ||
}, | ||
|
@@ -17,16 +17,14 @@ | |
"author": "[email protected]", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@bytedance/mona-manager": "0.3.38", | ||
"@bytedance/mona-manager": "^0.3.39", | ||
"copy-webpack-plugin": "^10.2.0", | ||
"webpack": "^5.58.2" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^16.4.5", | ||
"react": "^17.0.2", | ||
"ttypescript": "^1.5.12", | ||
"typescript-json-schema": "^0.43.0", | ||
"typescript-transform-paths": "^2.2.4" | ||
"typescript-json-schema": "^0.43.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@bytedance/mona-service-commands", | ||
"version": "0.3.38", | ||
"version": "0.3.39", | ||
"displayName": "mona-service-commands", | ||
"description": "mona-service commands plugins for mona-manager", | ||
"main": "./dist/index.js", | ||
|
@@ -9,16 +9,16 @@ | |
"dist" | ||
], | ||
"scripts": { | ||
"build": "yarn clean && ttsc -b", | ||
"start": "ttsc -b -w", | ||
"build": "yarn clean && tspc -b", | ||
"start": "tspc -b -w", | ||
"clean": "rm -rf dist", | ||
"test": "jest" | ||
}, | ||
"author": "[email protected]", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@bytedance/mona-manager": "0.3.38", | ||
"@bytedance/mona-shared": "0.3.38", | ||
"@bytedance/mona-manager": "^0.3.39", | ||
"@bytedance/mona-shared": "^0.3.39", | ||
"archiver": "^5.3.0", | ||
"assert": "^2.0.0", | ||
"axios": "^1.6.5", | ||
|
@@ -39,9 +39,7 @@ | |
"@types/minimist": "^1.2.2", | ||
"@types/node": "^16.4.5", | ||
"@types/qrcode": "^1.4.2", | ||
"ttypescript": "^1.5.12", | ||
"typescript-json-schema": "^0.43.0", | ||
"typescript-transform-paths": "^2.2.4" | ||
"typescript-json-schema": "^0.43.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.