@pinegrow/vite-plugin 3.0.60 → 3.0.62
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/README.md +2 -1
- package/dist/index.cjs +1 -1
- package/package.json +1 -1
- package/types.d.ts +2 -1
package/README.md
CHANGED
|
@@ -78,8 +78,9 @@ interface PinegrowExternalPlugin {
|
|
|
78
78
|
* For eg, path.resolve(__dirname, '../my-awesome-lib/web-types.json')
|
|
79
79
|
* (or)
|
|
80
80
|
* import { fileURLToPath, URL } from 'node:url'
|
|
81
|
-
* fileURLToPath(new URL('./
|
|
81
|
+
* fileURLToPath(new URL('./web-types/my-awesome-lib.json', import.meta.url)) // pinegrow commonjs plugin
|
|
82
82
|
* fileURLToPath(new URL('./my-awesome-lib/web-types.json', import.meta.url)) // pinegrow commonjs plugin
|
|
83
|
+
* fileURLToPath(new URL('./relative-path/web-types.json', import.meta.url)) // web-types of component library
|
|
83
84
|
*/
|
|
84
85
|
pluginPath: string
|
|
85
86
|
}
|