@pinegrow/vite-plugin 3.0.59 → 3.0.61

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinegrow/vite-plugin",
3
- "version": "3.0.59",
3
+ "version": "3.0.61",
4
4
  "description": "Pinegrow Vite Plugin",
5
5
  "type": "module",
6
6
  "files": [
package/types.d.ts CHANGED
@@ -26,8 +26,9 @@ interface PinegrowExternalPlugin {
26
26
  * For eg, path.resolve(__dirname, '../my-awesome-lib/web-types.json')
27
27
  * (or)
28
28
  * import { fileURLToPath, URL } from 'node:url'
29
- * fileURLToPath(new URL('./relative-path/web-types.json', import.meta.url)) // web-types of component library
29
+ * fileURLToPath(new URL('./web-types/my-awesome-lib.json', import.meta.url)) // pinegrow commonjs plugin
30
30
  * fileURLToPath(new URL('./my-awesome-lib/web-types.json', import.meta.url)) // pinegrow commonjs plugin
31
+ * fileURLToPath(new URL('./relative-path/web-types.json', import.meta.url)) // web-types of component library
31
32
  */
32
33
  pluginPath: string
33
34
  }