-
Notifications
You must be signed in to change notification settings - Fork 1
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 #107 from mittwald/switch-to-unbuild
Switch to unbuild because of auto-config
- Loading branch information
Showing
93 changed files
with
1,876 additions
and
656 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+21.7 KB
.yarn/cache/@babel-helper-compilation-targets-npm-7.22.15-7aac9e71ad-9706decaa1.zip
Binary file not shown.
Binary file added
BIN
+4.31 KB
.yarn/cache/@babel-helper-environment-visitor-npm-7.22.20-260909e014-d80ee98ff6.zip
Binary file not shown.
Binary file added
BIN
+8.77 KB
.yarn/cache/@babel-helper-function-name-npm-7.23.0-ce38271242-7b2ae024cd.zip
Binary file not shown.
Binary file added
BIN
+4.5 KB
.yarn/cache/@babel-helper-hoist-variables-npm-7.22.5-6db3192347-394ca191b4.zip
Binary file not shown.
Binary file added
BIN
+16 KB
.yarn/cache/@babel-helper-module-imports-npm-7.22.15-687e77ee50-5ecf9345a7.zip
Binary file not shown.
Binary file added
BIN
+45.4 KB
.yarn/cache/@babel-helper-module-transforms-npm-7.23.3-69078a931c-583fa580f8.zip
Binary file not shown.
Binary file added
BIN
+5.9 KB
.yarn/cache/@babel-helper-simple-access-npm-7.22.5-0a3f578780-7d5430eecf.zip
Binary file not shown.
Binary file added
BIN
+5.25 KB
.yarn/cache/@babel-helper-split-export-declaration-npm-7.22.6-e723505aef-e141cace58.zip
Binary file not shown.
Binary file added
BIN
+9.82 KB
.yarn/cache/@babel-helper-string-parser-npm-7.22.5-448ff0e489-7f275a7f1a.zip
Binary file not shown.
Binary file added
BIN
+17.5 KB
.yarn/cache/@babel-helper-validator-identifier-npm-7.22.20-18305bb306-df882d2675.zip
Binary file not shown.
Binary file added
BIN
+7.15 KB
.yarn/cache/@babel-helper-validator-option-npm-7.22.15-29aa330042-68da52b1e1.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+48.4 KB
.yarn/cache/@rollup-plugin-commonjs-npm-25.0.7-f5b19139ea-89b108e245.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+31.1 KB
.yarn/cache/@rollup-plugin-node-resolve-npm-15.2.3-f49fe9c656-d36a6792fb.zip
Binary file not shown.
Binary file added
BIN
+11.3 KB
.yarn/cache/@rollup-plugin-replace-npm-5.0.5-42f61be6e8-bcf106346f.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-9.15 KB
.yarn/cache/postcss-load-config-npm-4.0.1-351eb776f5-d841565bc3.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-19.7 KB
.yarn/cache/ts-interface-checker-npm-0.1.13-0c7b064494-9f7346b9e2.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -9,31 +9,25 @@ | |
"email": "[email protected]" | ||
}, | ||
"homepage": "https://github.com/mittwald/react-use-promise#readme", | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.js", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"require": "./dist/index.cjs", | ||
"import": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
} | ||
".": "./dist/index.mjs" | ||
}, | ||
"scripts": { | ||
"compile": "tsup src/index.ts --format esm,cjs --dts --clean", | ||
"build": "unbuild", | ||
"format": "yarn format:base --write", | ||
"format:base": "prettier $@ '**/*.{ts,tsx,yaml,yml,json,md,mdx}'", | ||
"license-check": "yarn pnpify license-checker-rseidelsohn $*", | ||
"test": "yarn test:format && yarn test:lint && yarn test:compile && yarn test:jest && yarn test:licenses", | ||
"test:compile": "yarn tsc --noEmit", | ||
"test": "yarn test:format && yarn test:lint && yarn test:build && yarn test:jest && yarn test:licenses", | ||
"test:build": "yarn build", | ||
"test:format": "yarn format:base --check", | ||
"test:jest": "node --experimental-vm-modules $(yarn bin jest)", | ||
"test:licenses": "yarn license-check --summary --unknown && yarn license-check --unknown --failOn 'UNLICENSED;UNKNOWN'", | ||
"test:lint": "eslint . --cache", | ||
"test:packages": "yarn all run test" | ||
}, | ||
"files": [ | ||
"dist/**/*.*" | ||
"dist" | ||
], | ||
"keywords": [ | ||
"react", | ||
|
@@ -87,20 +81,17 @@ | |
"rimraf": "^5.0.5", | ||
"ts-jest": "^29.1.1", | ||
"tsd": "^0.29.0", | ||
"tsup": "^7.2.0", | ||
"typescript": "~5.2.2" | ||
"typescript": "^5.2.2", | ||
"unbuild": "^2.0.0" | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"contributors": [ | ||
{ | ||
"name": "Marco Falkenberg", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"dependenciesMeta": { | ||
"[email protected]": { | ||
"unplugged": true | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"unbuild": { | ||
"declaration": true | ||
} | ||
} |
Oops, something went wrong.