|
@@ -234,10 +234,10 @@ function main({
|
|
|
// Filter out *all* phosphor nodes
|
|
|
if (!phosphor) {
|
|
|
Object.keys(sub).forEach(v => {
|
|
|
- sub[v] = sub[v].filter(w => !w.startsWith('@phosphor/'));
|
|
|
+ sub[v] = sub[v].filter(w => !w.startsWith('@lumino/'));
|
|
|
});
|
|
|
Object.keys(sub).forEach(v => {
|
|
|
- if (v.startsWith('@phosphor/')) {
|
|
|
+ if (v.startsWith('@lumino/')) {
|
|
|
delete sub[v];
|
|
|
}
|
|
|
});
|
|
@@ -277,7 +277,7 @@ commander
|
|
|
'--no-jupyterlab',
|
|
|
'Do not include dependency connections TO @jupyterlab org packages nor isolated @jupyterlab org packages'
|
|
|
)
|
|
|
- .option('--no-phosphor', 'Do not include @phosphor org packages')
|
|
|
+ .option('--no-phosphor', 'Do not include @lumino org packages')
|
|
|
.option('--no-devDependencies', 'Do not include dev dependencies')
|
|
|
.option('--no-dependencies', 'Do not include normal dependencies')
|
|
|
.option('--no-top-level', 'Do not include the top-level packages')
|