@joystick.js/cli-canary 0.0.0-canary.70 → 0.0.0-canary.72

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.
@@ -146,6 +146,12 @@ const getFilePlatform = (path = "") => {
146
146
  const isCopy = isCopyPath(path);
147
147
  const isBrowser = isBrowserPath(path);
148
148
  const isNode = isNodePath(path);
149
+ console.log({
150
+ path,
151
+ isCopy,
152
+ isBrowser,
153
+ isNode
154
+ });
149
155
  if (isCopy) {
150
156
  platform = "copy";
151
157
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/cli-canary",
3
- "version": "0.0.0-canary.70",
3
+ "version": "0.0.0-canary.72",
4
4
  "type": "module",
5
5
  "description": "CLI for the Joystick JavaScript framework.",
6
6
  "main": "development.js",
@@ -168,6 +168,13 @@ const getFilePlatform = (path = '') => {
168
168
  const isBrowser = isBrowserPath(path);
169
169
  const isNode = isNodePath(path);
170
170
 
171
+ console.log({
172
+ path,
173
+ isCopy,
174
+ isBrowser,
175
+ isNode,
176
+ });
177
+
171
178
  if (isCopy) {
172
179
  platform = "copy";
173
180
  }