@joystick.js/cli-canary 0.0.0-canary.156 → 0.0.0-canary.158

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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/cli-canary",
3
- "version": "0.0.0-canary.156",
3
+ "version": "0.0.0-canary.158",
4
4
  "type": "module",
5
5
  "description": "CLI for the Joystick JavaScript framework.",
6
6
  "main": "development.js",
@@ -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 || [])],