-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
1 parent
91f5224
commit fcd30f1
Showing
11 changed files
with
245 additions
and
28 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 was deleted.
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 |
---|---|---|
|
@@ -8,10 +8,13 @@ | |
"commit": "git-cz", | ||
"format": "prettier --write \"./src/**/**.{ts,tsx,js,jsx,json}\"", | ||
"lint": "eslint ./", | ||
"cleanup": "rm -rf dist && mkdir dist", | ||
"build:indexes": "node scripts/build.js", | ||
"build:types": "tsc --project ./tsconfig.build.json", | ||
"build:commonjs": "yarn babel --out-dir ./dist src -x .ts --ignore '**/*.test.ts','**/*.d.ts'", | ||
"build:methods": "node scripts/build.js && prettier --config ./.prettierrc --write ./babel-plugin-factories.json", | ||
"build:cjs": "rollup -c", | ||
"build:mjs": "ESMODULES=true yarn build:commonjs --out-file-extension .mjs", | ||
"build:bundles": "rollup -c", | ||
"build": "run-s cleanup build:indexes build:types build:commonjs build:mjs build:bundles", | ||
"prepublishOnly": "yarn build:methods && yarn build:cjs" | ||
}, | ||
"author": "Sergey Sova <[email protected]> (https://sergeysova.com/)", | ||
|
@@ -43,6 +46,7 @@ | |
"husky": "3.1.0", | ||
"jest": "^27.2.4", | ||
"lint-staged": "^9.5.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.3.0", | ||
"rollup": "^2.32.1", | ||
"rollup-plugin-terser": "^7.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"factories": ["patronum", "patronum/delay"], | ||
"mapping": { | ||
"delay": "delay" | ||
} | ||
} |
File renamed without changes.
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
File renamed without changes.
Oops, something went wrong.