@npmcli/template-oss 2.5.0 → 2.5.1
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.
|
@@ -81,7 +81,10 @@ const copyContent = async (path, rootPath, config) => {
|
|
|
81
81
|
await copyFiles(rootPath, repoFiles)
|
|
82
82
|
if (!config.windowsCI) {
|
|
83
83
|
// copyFiles already did the mkdir so we can just fs.copyFile now
|
|
84
|
-
await fs.copyFile(
|
|
84
|
+
await fs.copyFile(
|
|
85
|
+
join(contentDir, 'ci-no-windows.yml'),
|
|
86
|
+
join(rootPath, '.github', 'workflows', 'ci.yml')
|
|
87
|
+
)
|
|
85
88
|
}
|
|
86
89
|
}
|
|
87
90
|
return
|