Skip to content

Commit

Permalink
export dist path (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
leoraba authored Nov 28, 2024
1 parent 1bcf50c commit 873b87e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/data-model/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.3.0",
"description": "Data model for Lyric",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"\n===================== Build =================": "",
Expand All @@ -24,8 +24,8 @@
"dist/"
],
"exports": {
".": "./index.js",
"./models": "./src/models/index.js"
".": "./dist/index.js",
"./models": "./dist/src/models/index.js"
},
"license": "AGPL-3.0-or-later",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/data-provider/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export { type AppConfig } from './src/config/config.js';
export { default as provider } from './src/core/provider.js';
export { errorHandler } from './src/middleware/errorHandler.js';
export { migrate } from '@overture-stack/lyric-data-model';
export { type DbConfig, migrate } from '@overture-stack/lyric-data-model';

// routes
export { default as dictionaryRouters } from './src/routers/dictionaryRouter.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/data-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.3.0",
"description": "Data Submission system",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
Expand Down

0 comments on commit 873b87e

Please sign in to comment.