ultimate-jekyll-manager 0.0.101 → 0.0.102
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/commands/setup.js +6 -1
- package/package.json +1 -1
package/dist/commands/setup.js
CHANGED
|
@@ -248,12 +248,17 @@ function setupScripts() {
|
|
|
248
248
|
|
|
249
249
|
async function ensureCoreFiles() {
|
|
250
250
|
// Ensure src/_config.yml exists
|
|
251
|
+
// From error
|
|
252
|
+
/Users/ian/Developer/Repositories/DashQR/dashqr-website/node_modules/ultimate-jekyll-manager/src/defaults/src/_config.yml
|
|
253
|
+
|
|
254
|
+
// Actual path
|
|
255
|
+
/Users/ian/Developer/Repositories/ITW-Creative-Works/ultimate-jekyll-manager/src/defaults/src/_config.yml
|
|
251
256
|
if (!jetpack.exists('src/_config.yml')) {
|
|
252
257
|
// Log
|
|
253
258
|
logger.log('No src/_config.yml found. Creating default config file...');
|
|
254
259
|
|
|
255
260
|
// Copy default _config.yml
|
|
256
|
-
const sourcePath = path.join(rootPathPackage, '
|
|
261
|
+
const sourcePath = path.join(rootPathPackage, 'dist/defaults/src/_config.yml');
|
|
257
262
|
const targetPath = path.join(rootPathProject, 'src/_config.yml');
|
|
258
263
|
|
|
259
264
|
jetpack.copy(sourcePath, targetPath);
|