Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Sep 9, 2024
1 parent f71db73 commit dd82024
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions e2e-examples/cli-e2e-graph/tooling/graph.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ export const createNodes: CreateNodes = [
const tags = projectConfiguration?.tags ?? [];
const isPublishable = tags.some((target) => target === 'publishable');
const isNpmEnv = tags.some((target) => target === 'npm-env');
if (isNpmEnv) {
console.info('verdaccioTargets' + projectConfiguration.name);
}
isPublishable && console.info('npmTargets' + projectConfiguration.name);

return {
projects: {
[root]: {
Expand Down
5 changes: 1 addition & 4 deletions e2e-examples/cli-e2e-pretarget/tooling/pretarget.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ export const createNodes: CreateNodes = [
const tags = projectConfiguration?.tags ?? [];
const isPublishable = tags.some((target) => target === 'publishable');
const isNpmEnv = tags.some((target) => target === 'npm-env');
if (isNpmEnv) {
console.info('verdaccioTargets' + projectName);
}
isPublishable && console.info('npmTargets' + projectName);

return {
projects: {
[root]: {
Expand Down

0 comments on commit dd82024

Please sign in to comment.