Skip to content

Commit

Permalink
fix(umd): strip outdated umd files from npm packages
Browse files Browse the repository at this point in the history
ISSUES CLOSED: #198
  • Loading branch information
jgravois committed May 15, 2018
1 parent 1b6807a commit 2e1764d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/acetate.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ module.exports = function(acetate) {
acetate.helper("cdnUrl", function(context, package) {
return `https://unpkg.com/${
package.name
}@${package.version}/dist/umd/${package.name.split("/")[1]}.umd.js`;
}@${package.version}/dist/umd/${package.name.replace("arcgis-rest-", "")}.umd.js`;
});

acetate.helper("npmInstallCmd", function(context, package) {
Expand Down

0 comments on commit 2e1764d

Please sign in to comment.