Skip to content

Commit 90adbd7

Browse files
Reset main branch to v2.8.10 (#1326)
1 parent 678c0e2 commit 90adbd7

File tree

94 files changed

+22673
-16825
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+22673
-16825
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
**/node_modules/
22
**/dist/
3-
packages/linter/
3+
packages/linter
4+
packages/optimizer/spec/helpers/validator.js

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"overrides": [
2424
{
25-
"files": ["*.js"],
25+
"files": ["*.js", "*.ts"],
2626
"rules": {
2727
"@typescript-eslint/no-var-requires": "off",
2828
"@typescript-eslint/explicit-module-boundary-types": "off"

.github/workflows/CI.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ jobs:
2020
with:
2121
node-version: ${{ matrix.node }}
2222
registry-url: https://registry.npmjs.org
23-
- name: install
24-
run: npx lerna clean --yes
23+
- name: bootstrap
2524
run: npx lerna bootstrap --hoist
25+
- name: link
26+
run: npx lerna link
27+
- name: build
28+
run: npm run build
2629
- name: test
2730
run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
**/dist/**/*
22
logs
33
*.log
4+
*.swp
45
npm-debug.log*
56
yarn-debug.log*
67
yarn-error.log*

CHANGELOG.md

Lines changed: 84 additions & 131 deletions
Large diffs are not rendered by default.

jest.setup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
// increase timeout for network requests
2-
jest.setTimeout(10000); // in milliseconds
1+
/* Global jest */
2+
jest.setTimeout(20000);

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "3.0.0-canary.2"
5+
"version": "2.8.10"
66
}

0 commit comments

Comments
 (0)