1 Commits
1.0.3 ... 1.0.4

Author SHA1 Message Date
73a2c578a5 Redefine exports to use relative paths. 2022-02-03 13:05:13 -06:00
2 changed files with 7 additions and 7 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@jdbernard/vue-common",
"version": "1.0.3",
"version": "1.0.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@jdbernard/vue-common",
"version": "1.0.3",
"version": "1.0.4",
"description": "Extra stuff I always use when building Vue applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -9,11 +9,11 @@
],
"exports": {
".": "./dist/index.js",
"injector": "./dist/injector.js",
"sorting": "./dist/sorting.js",
"state": "./dist/state.js",
"toast.service": "./dist/toast.service.js",
"util": "./dist/util.js"
"./injector": "./dist/injector.js",
"./sorting": "./dist/sorting.js",
"./state": "./dist/state.js",
"./toast.service": "./dist/toast.service.js",
"./util": "./dist/util.js"
},
"scripts": {
"build": "tsc --build tsconfig.json && cp -r src/components dist/.",