-
I don't if it's related to the fix made in #376 but I can't edit or create a Example: const construct = new projen.awscdk.AwsCdkConstructLibrary({
...baseOptions,
name: 'construct',
packageName: '@acme/construct',
parent: monorepo,
outdir: 'packages/construct',
cdkVersion: '2.118.0',
})
// Edit npmrc object natively available don't work
construct.npmrc.addConfig('key', 'value')
construct.npmrc.addRegistry('https://example.com/', '@acme')
// Create a new npmrc don't work too
const constructNpmrc = new projen.javascript.NpmConfig(construct)
constructNpmrc.addConfig('key', 'value')
constructNpmrc.addRegistry('https://example.com/', '@acme') For now I can create the file manually, but I don't if i did something wrong of if it's a bug an should be reported |
Beta Was this translation helpful? Give feedback.
Answered by
agdimech
Jan 11, 2024
Replies: 1 comment 4 replies
-
Context: I want to publish some of my packages in my nonorepo in gitlab private registry |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi - are you able to just create a publish task in each package you want to publish and then just call
pdk nx run-many -t publish
from the root?