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
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 22
- run: corepack enable
- run: yarn install
- run: yarn run prettier-diff
Lint:
Expand All @@ -17,6 +18,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 22
- run: corepack enable
- run: yarn install
- run: yarn run lint-diff
Jest:
Expand All @@ -26,5 +28,6 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 22
- run: corepack enable
- run: yarn install
- run: yarn run test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ coverage
bundle_sizes.html
.eslintcache
demo/javascript-demo/server/node_modules
.yarn/*
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
56 changes: 29 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,42 +37,43 @@
"prettier-format": "prettier --write src",
"lint-diff": "TIMING=1 eslint --cache --cache-location '.eslintcache' src --ext .ts,.d.ts",
"lint-fix": "TIMING=1 eslint --fix --cache --cache-location '.eslintcache' src --ext .ts,.d.ts",
"test": "yarn check --integrity && jest --maxWorkers=2",
"test": "yarn install && jest --maxWorkers=2",
"demo:npm": "yarn --cwd ./demo/react-demo start",
"demo:umd": "yarn --cwd ./demo/javascript-demo/server dev",
"watch": "concurrently \"yarn:watch:*\""
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-loader": "^8.1.0",
"commitizen": "^4.2.1",
"concurrently": "^5.2.0",
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.4.1",
"commitizen": "^4.3.1",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11"
"semantic-release": "^17.4.7",
"ts-jest": "^26.5.6",
"typescript": "^3.9.10",
"webpack": "^4.47.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"core-js": "3.32.0",
"regenerator-runtime": "^0.13.5",
"uuid": "^8.3.0"
"regenerator-runtime": "^0.13.11",
"uuid": "^8.3.2"
},
"browserslist": [
"defaults",
Expand Down Expand Up @@ -103,5 +104,6 @@
"branches": [
"master"
]
}
},
"packageManager": "yarn@4.9.1"
}
Loading