@getspot/spot-widget-vue 0.0.0 → 0.0.1

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @getspot/spot-widget-vue@0.0.0 build /builds/getspot/spot-widget/packages/vue
2
+ > @getspot/spot-widget-vue@0.0.1 build /builds/getspot/spot-widget/packages/vue
3
3
  > vite build
4
4
 
5
5
  The CJS build of Vite's Node API is deprecated. See https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.
@@ -9,6 +9,6 @@ transforming...
9
9
  No name was provided for external module "@getspot/spot-widget" in "output.globals" – guessing "SpotWidget".
10
10
  rendering chunks...
11
11
  computing gzip size...
12
- dist/vue-spot-widget.umd.js 0.80 kB │ gzip: 0.49 kB
13
- dist/vue-spot-widget.es.js 0.80 kB │ gzip: 0.48 kB
14
- ✓ built in 147ms
12
+ dist/index.umd.js 0.80 kB │ gzip: 0.49 kB
13
+ dist/index.es.js 0.80 kB │ gzip: 0.48 kB
14
+ ✓ built in 293ms
package/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # @getspot/spot-widget-vue
2
+
3
+ ## 0.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8cd937c: Initial release of components
8
+ - 45e9fbb: Adding versioning via changeset
9
+ - 7aabff5: Updating packaging process with vite
10
+ - Updated dependencies [8cd937c]
11
+ - Updated dependencies [45e9fbb]
12
+ - Updated dependencies [7aabff5]
13
+ - @getspot/spot-widget@0.0.1
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@getspot/spot-widget-vue",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "main": "dist/index.js",
8
- "types": "dist/index.d.ts",
7
+ "main": "dist/index.umd.js",
8
+ "module": "dist/index.es.js",
9
9
  "dependencies": {
10
- "@getspot/spot-widget": "0.0.0"
10
+ "@getspot/spot-widget": "0.0.1"
11
11
  },
12
12
  "peerDependencies": {
13
13
  "vue": "^3.0.0"
package/vite.config.js CHANGED
@@ -9,7 +9,7 @@ export default defineConfig({
9
9
  lib: {
10
10
  entry: path.resolve(__dirname, "src/VueSpotWidget.vue"),
11
11
  name: "VueSpotWidget",
12
- fileName: (format) => `vue-spot-widget.${format}.js`,
12
+ fileName: (format) => `index.${format}.js`,
13
13
  formats: ["umd", "es"],
14
14
  },
15
15
  rollupOptions: {
File without changes
File without changes