-
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.
publish a build that includes gedcomx-js
- Loading branch information
Showing
4 changed files
with
25 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Entry point for a full webpack build of gedcomx-fs-js that includes gedcomx-js | ||
var GedcomX = require('gedcomx-js'); | ||
GedcomX.addExtensions(require('./index')); | ||
module.exports = GedcomX; |
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,9 @@ | ||
// Webpack config for a build that includes gedcomx-js and gedcomx-fs-js | ||
module.exports = { | ||
entry: [__dirname + "/src/full.js"], | ||
output: { | ||
path: __dirname + "/dist", | ||
filename: 'gedcomx-fs-full.min.js', | ||
library: 'GedcomX' | ||
} | ||
}; |