-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
29,234 additions
and
19,912 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
changesetIgnorePatterns: | ||
- "**/__tests__/**" | ||
- "**/*.md" | ||
|
||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs | ||
spec: "@yarnpkg/plugin-typescript" | ||
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs | ||
spec: "@yarnpkg/plugin-workspace-tools" | ||
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs | ||
spec: "@yarnpkg/plugin-version" | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
|
||
yarnPath: .yarn/releases/yarn-3.2.2.cjs |
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,15 +1,21 @@ | ||
{ | ||
"name": "benchmark", | ||
"name": "example-benchmark", | ||
"version": "0.1.5", | ||
"description": "Benchmark for normalizr", | ||
"main": "index.js", | ||
"author": "Nathaniel Tucker", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"start": "cross-env NODE_ENV=production BROWSERSLIST_ENV=modern babel-node --root-mode upward ./ --extensions '.ts,.tsx,.js'" | ||
"start": "NODE_ENV=production BROWSERSLIST_ENV=modern babel-node --root-mode upward ./ --extensions '.ts,.tsx,.js'" | ||
}, | ||
"dependencies": { | ||
"@rest-hooks/core": "^3.2.8", | ||
"@rest-hooks/normalizr": "^8.2.6", | ||
"benchmark": "^2.1.4" | ||
}, | ||
"devDependencies": { | ||
"@rest-hooks/normalizr": "^8.2.6" | ||
"@babel/node": "^7.18.9", | ||
"@types/benchmark": "^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
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 |
---|---|---|
|
@@ -18,11 +18,13 @@ | |
"build:clean": "lerna run build:clean --stream", | ||
"build:types": "yarn build:copy:ambient && tsc --build && lerna run build:legacy-types --stream", | ||
"build:copy:ambient": "mkdirp ./packages/normalizr/lib && copyfiles --flat ./packages/normalizr/src/schema.d.ts ./packages/normalizr/lib/ && mkdirp ./packages/endpoint/lib && copyfiles --flat ./packages/endpoint/src/endpoint.d.ts ./packages/endpoint/lib/&& mkdirp ./packages/core/lib && copyfiles --flat ./packages/core/src/state/RIC.d.ts ./packages/core/lib/state", | ||
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest", | ||
"test:ci": "yarn test -- --ci", | ||
"test:coverage": "yarn test -- --coverage", | ||
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest", | ||
"test:ci": "yarn test --ci", | ||
"test:coverage": "yarn test --coverage", | ||
"prepare": "yarn build:copy:ambient && tsc --build", | ||
"prepublishOnly": "lerna run build:legacy-types --stream" | ||
"prepack": "yarn prepare", | ||
"prepublishOnly": "lerna run build:legacy-types --stream", | ||
"postinstall": "yarn prepare" | ||
}, | ||
"engines": { | ||
"node": "^12.17 || ^13.7 || >=14" | ||
|
@@ -40,22 +42,22 @@ | |
"@babel/node": "7.18.9", | ||
"@commitlint/cli": "17.0.3", | ||
"@commitlint/config-conventional": "17.0.3", | ||
"@rest-hooks/core": "workspace:^", | ||
"@rest-hooks/test": "^7.2.1", | ||
"@testing-library/react": "13.3.0", | ||
"@testing-library/react-hooks": "8.0.1", | ||
"@testing-library/react-native": "10.1.1", | ||
"@types/jest": "28.1.6", | ||
"@types/lodash": "^4.14.166", | ||
"@types/node": "^18.0.6", | ||
"@types/react": "18.0.15", | ||
"benchmark": "^2.1.4", | ||
"conventional-changelog-anansi": "^0.2.0", | ||
"copyfiles": "^2.4.1", | ||
"core-js": "3.23.5", | ||
"coveralls": "^3.1.0", | ||
"cpy-cli": "^4.0.0", | ||
"cross-env": "^7.0.2", | ||
"cross-fetch": "^3.0.6", | ||
"downlevel-dts": "^0.10.0", | ||
"eslint": "8.20.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-prettier": "4.2.1", | ||
|
@@ -73,11 +75,11 @@ | |
"react-native": "0.69.2", | ||
"react-test-renderer": "18.2.0", | ||
"redux": "4.2.0", | ||
"rest-hooks": "workspace:^", | ||
"rimraf": "^3.0.2", | ||
"rollup": "2.77.0", | ||
"rollup-plugin-babel": "^4.4.0", | ||
"rollup-plugin-commonjs": "^10.1.0", | ||
"rollup-plugin-filesize": "^9.1.0", | ||
"rollup-plugin-filesize": "^9.1.2", | ||
"rollup-plugin-json": "^4.0.0", | ||
"rollup-plugin-node-resolve": "^5.2.0", | ||
"rollup-plugin-replace": "^2.2.0", | ||
|
@@ -86,7 +88,5 @@ | |
"typescript": "next", | ||
"whatwg-fetch": "3.0.0" | ||
}, | ||
"resolutions": { | ||
"@lerna/conventional-commits": "https://github.com/ntucker/lerna-conventional-commits.git" | ||
} | ||
"packageManager": "[email protected]" | ||
} |
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.