Add exports for injector symbols in the main index.

This commit is contained in:
Jonathan Bernard 2022-02-03 12:13:10 -06:00
parent 7507646f2b
commit ed54e2aa15
3 changed files with 10 additions and 3 deletions

7
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@jdbernard/vue-common",
"version": "1.0.1",
"version": "1.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -51,6 +51,11 @@
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz",
"integrity": "sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==",
"dev": true
},
"vue": {
"version": "2.6.14",
"resolved": "https://registry.npmjs.org/vue/-/vue-2.6.14.tgz",
"integrity": "sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ=="
}
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@jdbernard/vue-common",
"version": "1.0.1",
"version": "1.0.2",
"description": "Extra stuff I always use when building Vue applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@ -28,6 +28,7 @@
},
"dependencies": {
"@jdbernard/logging": "^1.1.3",
"mitt": "^3.0.0"
"mitt": "^3.0.0",
"vue": "^2.6.14"
}
}

View File

@ -1,3 +1,4 @@
export * from './state';
export * from './util';
export * from './sorting';
export { default as defaultDependencyInjector, DependencyInjector } from './injector';