Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
chore: do not generate changelog for e2e & website (#1509)
Browse files Browse the repository at this point in the history
  • Loading branch information
hehex9 committed Mar 18, 2021
1 parent 6c93abf commit 5adf05f
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 948 deletions.
74 changes: 0 additions & 74 deletions e2e/app/CHANGELOG.md

This file was deleted.

12 changes: 3 additions & 9 deletions e2e/app/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"name": "e2e-app",
"private": true,
"version": "2.11.8",
"description": "intergration tests for Remax",
"main": "index.js",
"keywords": [],
"author": "Wei Zhu <yesmeck@gmail.com>",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"watch:mini": "remax build -w",
"dev:mini": " mini build -w ./",
Expand All @@ -25,7 +20,7 @@
"clsx": "^1.0.4",
"mini-antui": "^0.4.34",
"react": "^16.8.6",
"remax": "2.11.8"
"remax": "*"
},
"devDependencies": {
"@types/expect-puppeteer": "^4.4.0",
Expand All @@ -34,8 +29,7 @@
"cross-env": "^6.0.3",
"http-server": "^0.12.3",
"jest-puppeteer": "^4.4.0",
"merge": "^1.2.1",
"rimraf": "^2.6.3"
"merge": "^1.2.1"
},
"workspaces": {
"nohoist": [
Expand Down
74 changes: 0 additions & 74 deletions e2e/plugin/CHANGELOG.md

This file was deleted.

11 changes: 3 additions & 8 deletions e2e/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"name": "e2e-plugin",
"private": true,
"version": "2.11.8",
"description": "intergration tests for Remax",
"main": "index.js",
"keywords": [],
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "remax mini-plugin build -w",
"prebuild": "rimraf dist",
Expand All @@ -18,7 +14,7 @@
"clsx": "^1.0.4",
"mini-antui": "^0.4.34",
"react": "^16.8.6",
"remax": "2.11.8"
"remax": "*"
},
"devDependencies": {
"@types/expect-puppeteer": "^4.4.0",
Expand All @@ -27,8 +23,7 @@
"cross-env": "^6.0.3",
"http-server": "^0.12.3",
"jest-puppeteer": "^4.4.0",
"merge": "^1.2.1",
"rimraf": "^2.6.3"
"merge": "^1.2.1"
},
"workspaces": {
"nohoist": [
Expand Down
10 changes: 4 additions & 6 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
{
"packages": [
"packages/*",
"e2e/*",
"website"
],
"command": {
"publish": {
"conventionalCommits": true
"conventionalCommits": true,
"exact": true,
"forcePublish": true,
"private": false
}
},
"version": "2.11.8",
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"prebuild": "npm run clean:packages",
"build": "tsc -b && lerna run build:cjs",
"test": "lerna run --ignore babel-preset-remax --ignore website --ignore e2e-* --stream test",
"test:e2e-web": "lerna run --stream --scope e2e-app test:web",
"test:e2e-mini": "lerna run --stream --scope e2e-app test:mini",
"test:e2e-plugin": "lerna run --stream --scope e2e-plugin test",
"test:e2e-web": "yarn --cwd e2e/app test:web",
"test:e2e-mini": "yarn --cwd e2e/app test:mini",
"test:e2e-plugin": "yarn --cwd e2e/plugin test",
"test:cov": "lerna run --ignore babel-preset-remax --ignore website --ignore e2e-* --stream test -- --collect-coverage",
"clean": "lerna clean",
"clean:packages": "lerna run clean",
Expand All @@ -20,10 +20,10 @@
"postinstall": "lerna bootstrap",
"lint": "eslint \"packages/*/src/**/*.{ts,tsx}\"",
"prerelease": "./scripts/prerelease",
"release": "lerna publish --force-publish --exact",
"release": "lerna publish",
"postrelease": "./scripts/postrelease",
"site:build": "lerna run --scope website --stream build",
"site:deploy": "lerna run --scope website --stream deploy",
"site:build": "yarn --cwd website build",
"site:deploy": "yarn --cwd website deploy",
"install:codesandbox": "PUPPETEER_SKIP_DOWNLOAD=1 yarn install",
"authors": "./scripts/authors"
},
Expand Down
Loading

1 comment on commit 5adf05f

@vercel
Copy link

@vercel vercel bot commented on 5adf05f Mar 18, 2021

Choose a reason for hiding this comment

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

Please sign in to comment.