@total_onion/onion-library 3.0.12 → 3.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/package.json +1 -1
- package/update-component.js +4 -1
- package/update-template.js +4 -1
package/package.json
CHANGED
package/update-component.js
CHANGED
|
@@ -216,7 +216,10 @@ const copyCoreComponent = (componentName) => {
|
|
|
216
216
|
|
|
217
217
|
switch (fileType) {
|
|
218
218
|
case 'php':
|
|
219
|
-
copyFile(
|
|
219
|
+
copyFile(
|
|
220
|
+
`${sourceDir}/${file}`,
|
|
221
|
+
`./project-setup/core-functions/${file}`
|
|
222
|
+
);
|
|
220
223
|
break;
|
|
221
224
|
case 'js':
|
|
222
225
|
copyFile(
|
package/update-template.js
CHANGED
|
@@ -215,7 +215,10 @@ const copyCoreComponent = (componentName) => {
|
|
|
215
215
|
|
|
216
216
|
switch (fileType) {
|
|
217
217
|
case 'php':
|
|
218
|
-
copyFile(
|
|
218
|
+
copyFile(
|
|
219
|
+
`${sourceDir}/${file}`,
|
|
220
|
+
`./inc/project-setup/core-functions/${file}`
|
|
221
|
+
);
|
|
219
222
|
break;
|
|
220
223
|
// case 'js':
|
|
221
224
|
// copyFile(
|