Skip to content

Commit

Permalink
don't export internal libs
Browse files Browse the repository at this point in the history
  • Loading branch information
elucash committed Nov 22, 2020
1 parent 9a8d743 commit 894ce67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pub.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function upload(file, repositoryFilename) {
}

function exportLibraries() {
let defs = libs.all.map(a => `
let defs = libs.all.filter(l => !l.internal).map(a => `
.lib('${a.target}', ${strings(a.jars)}${options(a.options)})`)

let content = `// Generated by 'node up --publish'
Expand Down

0 comments on commit 894ce67

Please sign in to comment.