ec4w_validator 0.0.10011 → 0.0.100111

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/vite.config.ts +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ec4w_validator",
3
3
  "private": false,
4
- "version": "0.0.10011",
4
+ "version": "0.0.100111",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "exports": {
15
15
  ".": {
16
- "import": "./dist/index.js",
16
+ "import": "./dist/index.es.js",
17
17
  "require": "./dist/index.umd.js"
18
18
  }
19
19
  },
package/vite.config.ts CHANGED
@@ -5,7 +5,7 @@ export default defineConfig({
5
5
  // plugins: [dts({ rollupTypes: true })], // Bundles types into one file
6
6
  build: {
7
7
  lib: {
8
- entry: 'src/ec4w_validator.js',
8
+ entry: './src/ec4w_validator.js',
9
9
  name: 'fafafa', // The global variable used in UMD builds
10
10
  fileName: (format) => `index.${format}.js`
11
11
  },