zshy 0.0.2 → 0.0.3
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/out/index.cjs +5 -6
- package/out/index.js +5 -6
- package/package.json +1 -1
package/out/index.cjs
CHANGED
|
@@ -237,12 +237,11 @@ Examples:
|
|
|
237
237
|
];
|
|
238
238
|
}
|
|
239
239
|
else {
|
|
240
|
-
console.warn(`⚠️ You're building your code to the project root. This means your compiled files will be generated alongside your source files
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
`);
|
|
240
|
+
console.warn(`⚠️ You're building your code to the project root. This means your compiled files will be generated alongside your source files.
|
|
241
|
+
➜ Ensure that your "files" in package.json excludes TypeScript source files, or your users may experience .d.ts resolution issues in some environments:
|
|
242
|
+
|
|
243
|
+
"files": ["**/*.js", "**/*.mjs", "**/*.cjs", "**/*.d.ts", "**/*.d.mts", "**/*.d.cts"],
|
|
244
|
+
`);
|
|
246
245
|
}
|
|
247
246
|
}
|
|
248
247
|
else {
|
package/out/index.js
CHANGED
|
@@ -199,12 +199,11 @@ Examples:
|
|
|
199
199
|
];
|
|
200
200
|
}
|
|
201
201
|
else {
|
|
202
|
-
console.warn(`⚠️ You're building your code to the project root. This means your compiled files will be generated alongside your source files
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
`);
|
|
202
|
+
console.warn(`⚠️ You're building your code to the project root. This means your compiled files will be generated alongside your source files.
|
|
203
|
+
➜ Ensure that your "files" in package.json excludes TypeScript source files, or your users may experience .d.ts resolution issues in some environments:
|
|
204
|
+
|
|
205
|
+
"files": ["**/*.js", "**/*.mjs", "**/*.cjs", "**/*.d.ts", "**/*.d.mts", "**/*.d.cts"],
|
|
206
|
+
`);
|
|
208
207
|
}
|
|
209
208
|
}
|
|
210
209
|
else {
|