Skip to content

Commit

Permalink
feat(path): Correct paths in package.json
Browse files Browse the repository at this point in the history
Updated incorrect paths in the "exports" section of package.json file. Previously, the paths were pointing to a 'dest' directory which has now been corrected to 'dist', matching the actual directory structure.
  • Loading branch information
Theshedman committed Nov 24, 2023
1 parent 2beab2b commit 47f90d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"main": "./dist/cjs/src/password/validator/main.js",
"module": "./dist/esm/src/password/validator/main.js",
"exports": {
"types": "./dest/types/src/password/validator/main.d.ts",
"import": "./dest/esm/src/password/validator/main.js",
"require": "./dest/cjs/src/password/validator/main.js"
"types": "./dist/types/src/password/validator/main.d.ts",
"import": "./dist/esm/src/password/validator/main.js",
"require": "./dist/cjs/src/password/validator/main.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
Expand Down

0 comments on commit 47f90d3

Please sign in to comment.