@joystick.js/cli-canary 0.0.0-canary.156 → 0.0.0-canary.157
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/lib/dev/index.js +1 -0
- package/package.json +1 -1
- package/src/lib/dev/index.js +2 -0
package/dist/lib/dev/index.js
CHANGED
|
@@ -176,6 +176,7 @@ const handleServerProcessSTDIO = () => {
|
|
|
176
176
|
const handleAddOrChangeFile = async (context = {}, path2 = "", options = {}) => {
|
|
177
177
|
try {
|
|
178
178
|
if (context.isAddingOrChangingFile) {
|
|
179
|
+
console.log("ADDING OR CHANGING FILE");
|
|
179
180
|
const codependencies = await getCodependenciesForFile(path2);
|
|
180
181
|
const fileResults = await buildFiles({
|
|
181
182
|
files: [path2, ...codependencies?.existing || []],
|
package/package.json
CHANGED
package/src/lib/dev/index.js
CHANGED
|
@@ -211,6 +211,8 @@ const handleServerProcessSTDIO = () => {
|
|
|
211
211
|
const handleAddOrChangeFile = async (context = {}, path = '', options = {}) => {
|
|
212
212
|
try {
|
|
213
213
|
if (context.isAddingOrChangingFile) {
|
|
214
|
+
console.log('ADDING OR CHANGING FILE');
|
|
215
|
+
|
|
214
216
|
const codependencies = await getCodependenciesForFile(path);
|
|
215
217
|
const fileResults = await buildFiles({
|
|
216
218
|
files: [path, ...(codependencies?.existing || [])],
|