Skip to content

Commit

Permalink
Add packaged Paratext extensions for a sample release
Browse files Browse the repository at this point in the history
  • Loading branch information
lyonsil committed Feb 28, 2024
1 parent 499ed15 commit b1816bc
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
*.woff binary
*.woff2 binary
*.ldml binary
*.zip binary
2 changes: 1 addition & 1 deletion extensions/webpack/webpack.config.main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const configMain: () => Promise<webpack.Configuration> = async () => {
plugins: [
// Copy static files to the output folder https://webpack.js.org/plugins/copy-webpack-plugin/
new CopyPlugin({
patterns: getMainCopyFilePatterns(extensions),
patterns: getMainCopyFilePatterns(extensions).concat({ from: 'zip' }),
}),
],
});
Expand Down
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions src/node/utils/command-line.util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export function getCommandLineArgumentsGroup(
);
});

if (argName === COMMAND_LINE_ARGS.ExtensionsDir) return argumentsGroup.concat(['zip']);
return argumentsGroup;
}

Expand Down

0 comments on commit b1816bc

Please sign in to comment.