-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extracted ESNext transpilation into separate plugin
this resolves the dependencies-management issue (cf. previous commit; 69a2bc2) opting into features like this is pretty much why we designed extensible configuration the way we did creating a separate repository for this plugin didn't seem warranted and would have complicated testing
- Loading branch information
Showing
6 changed files
with
67 additions
and
39 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
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,22 @@ | ||
{ | ||
"name": "beatdown-esnext", | ||
"version": "1.0.0", | ||
"description": "simplified JavaScript module bundling", | ||
"author": "FND", | ||
"license": "Apache-2.0", | ||
"homepage": "https://www.faucet-pipeline.org", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/faucet-pipeline/beatdown.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/faucet-pipeline/beatdown/issues" | ||
}, | ||
"main": "index.js", | ||
"dependencies": { | ||
"@babel/core": "^7.10.4", | ||
"@babel/preset-env": "^7.10.4", | ||
"@rollup/plugin-babel": "^5.0.4", | ||
"beatdown": "1.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