@joystick.js/cli-canary 0.0.0-canary.161 → 0.0.0-canary.162

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.
@@ -191,6 +191,7 @@ const buildFiles = async (options, { resolve, reject }) => {
191
191
  const copyFiles = filesWithPlatform?.filter((file) => file?.platform === "copy");
192
192
  const browserFiles = filesWithPlatform?.filter((file) => file?.platform === "browser");
193
193
  const nodeFiles = filesWithPlatform?.filter((file) => file?.platform === "node");
194
+ console.log(filesWithPlatform);
194
195
  handleCopyFiles(copyFiles, options?.outputPath);
195
196
  const fileResults = await Promise.all([
196
197
  handleBuildForBrowser(browserFiles, options).then(() => {
@@ -195,11 +195,6 @@ const handleAddOrChangeFile = async (context = {}, path2 = "", options = {}) =>
195
195
  );
196
196
  return;
197
197
  }
198
- console.log("ADDING OR CHANGING FILE", {
199
- context,
200
- fileResultsHaveErrors,
201
- options
202
- });
203
198
  if (!fileResultsHaveErrors) {
204
199
  process.initialBuildComplete = true;
205
200
  if (context.isUIUpdate) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/cli-canary",
3
- "version": "0.0.0-canary.161",
3
+ "version": "0.0.0-canary.162",
4
4
  "type": "module",
5
5
  "description": "CLI for the Joystick JavaScript framework.",
6
6
  "main": "development.js",
@@ -218,6 +218,8 @@ const buildFiles = async (options, { resolve, reject }) => {
218
218
  const browserFiles = filesWithPlatform?.filter((file) => file?.platform === 'browser');
219
219
  const nodeFiles = filesWithPlatform?.filter((file) => file?.platform === 'node');
220
220
 
221
+ console.log(filesWithPlatform);
222
+
221
223
  handleCopyFiles(copyFiles, options?.outputPath);
222
224
 
223
225
  const fileResults = await Promise.all([
@@ -242,12 +242,6 @@ const handleAddOrChangeFile = async (context = {}, path = '', options = {}) => {
242
242
  return;
243
243
  }
244
244
 
245
- console.log('ADDING OR CHANGING FILE', {
246
- context,
247
- fileResultsHaveErrors,
248
- options,
249
- });
250
-
251
245
  if (!fileResultsHaveErrors) {
252
246
  process.initialBuildComplete = true;
253
247