pkg-pr-new 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -8
- package/index.ts +0 -6
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -163,12 +163,6 @@ const main = defineCommand({
|
|
|
163
163
|
if (!pJson.name) {
|
|
164
164
|
throw new Error(`"name" field in ${pJsonPath} should be defined`);
|
|
165
165
|
}
|
|
166
|
-
if (pJson.private) {
|
|
167
|
-
console.log(
|
|
168
|
-
`skipping ${templateDir} because the package is private`,
|
|
169
|
-
);
|
|
170
|
-
continue;
|
|
171
|
-
}
|
|
172
166
|
|
|
173
167
|
console.log("preparing template:", pJson.name);
|
|
174
168
|
|