saloe 0.0.31 → 0.0.32

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/dist/vite.cjs.js CHANGED
@@ -99,3 +99,4 @@ const getPlugin = () => {
99
99
  };
100
100
  exports.getInputPaths = getInputPaths;
101
101
  exports.getPlugin = getPlugin;
102
+ exports.getURLPath = getURLPath;
package/dist/vite.es.js CHANGED
@@ -97,5 +97,6 @@ const getPlugin = () => {
97
97
  };
98
98
  export {
99
99
  getInputPaths,
100
- getPlugin
100
+ getPlugin,
101
+ getURLPath
101
102
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saloe",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "Tools for making web development easy and efficient",
5
5
  "type": "module",
6
6
  "scripts": {
package/src/vite.js CHANGED
@@ -124,4 +124,5 @@ const getPlugin = () => {
124
124
  export {
125
125
  getInputPaths,
126
126
  getPlugin,
127
+ getURLPath,
127
128
  }