-
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.
feat: align with the upstream and update the package JSON (#4)
Integrate all the upstream changes and update the name of the package JSON to distinguish this being a fork. Removes the CJS export.
- Loading branch information
1 parent
d92469b
commit ab3a1ed
Showing
5 changed files
with
25 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
node_modules | ||
index.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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,21 +1,28 @@ | ||
{ | ||
"name": "post-task", | ||
"version": "1.2.0", | ||
"description": "A polyfill for the Scheduler API with a pre-configured progressively-enhanced function helps to split long-running tasks into chunks.", | ||
"name": "@dagher/post-task", | ||
"license": "MIT", | ||
"type": "module", | ||
"description": "A polyfill for the Scheduler API with a pre-configured progressively-enhanced function helps to split long-running tasks into chunks.", | ||
"version": "1.0.0-dev.1", | ||
"exports": { | ||
"types": "./index.d.ts", | ||
"import": "./index.mjs", | ||
"require": "./index.cjs" | ||
"import": "./index.mjs" | ||
}, | ||
"scripts": { | ||
"pretest": "node --check index.mjs", | ||
"test": "node --disable-warning=ExperimentalWarning ./index.spec.mjs", | ||
"prepublishOnly": "sed 's/export default/module.exports =/g' ./index.mjs > index.cjs" | ||
"test": "node --disable-warning=ExperimentalWarning ./index.spec.mjs" | ||
}, | ||
"devDependencies": { | ||
"prettier": "3.4.2" | ||
}, | ||
"packageManager": "[email protected]+sha512.11dff29565d2297c74e7c594a9762581bde969f0aa5cbe6f5b3644bf008a16c065ece61094d9ffbb81125be38df8e1ba43eb8244b3d30c61eb797e9a2440e3ec", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/adevinta/post-task.git" | ||
"url": "git+https://github.com/danieleloscozzese/post-task.git" | ||
}, | ||
"homepage": "https://github.com/danieleloscozzese/post-task#readme", | ||
"bugs": { | ||
"url": "https://github.com/danieleloscozzese/post-task/issues" | ||
}, | ||
"keywords": [ | ||
"scheduler", | ||
|
@@ -25,14 +32,7 @@ | |
], | ||
"author": { | ||
"name": "Daniel Arthur Gallagher", | ||
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/adevinta/post-task/issues" | ||
}, | ||
"homepage": "https://github.com/adevinta/post-task#readme", | ||
"devDependencies": { | ||
"prettier": "3.4.2" | ||
"email": "[email protected]", | ||
"url": "https://danielarthurgallagher.dev" | ||
} | ||
} |