We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d741173 commit a66e28aCopy full SHA for a66e28a
1 file changed
tools/cli/src/commands/packages/enable-publishing.ts
@@ -52,7 +52,9 @@ export default class EnablePublishing extends Command {
52
53
// Step 1: Find all element/lib packages
54
this.logger.info('📦 Finding @pie-element/* and @pie-lib/* packages...');
55
- const allPackagePaths = await glob(PACKAGE_MANIFEST_PATTERN, { ignore: ['**/node_modules/**'] });
+ const allPackagePaths = await glob(PACKAGE_MANIFEST_PATTERN, {
56
+ ignore: ['**/node_modules/**'],
57
+ });
58
const packagePaths: string[] = [];
59
const packageNames: string[] = [];
60
0 commit comments