Skip to content

Commit

Permalink
Renamed entries
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Jul 10, 2024
1 parent aae5699 commit 0252ec7
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion dist/composables.cjs → dist/api.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/composables.js → dist/api.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ref as _ } from "vue";
import { AlertStyle as ie } from "./interfaces.js";
import { AlertStyle as ie } from "./types.js";
import { u as ae } from "./auth-Bko0F-UD.js";
function Ce(e, t) {
return function() {
Expand Down
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
"url": "https://github.com/userfrosting/UserFrosting/issues"
},
"exports": {
"./composables": {
"import": "./dist/composables.js",
"require": "./dist/composables.cjs",
"./api": {
"import": "./dist/api.js",
"require": "./dist/api.cjs",
"types": "./dist/composables/index.d.ts"
},
"./interfaces": {
"import": "./dist/interfaces.js",
"require": "./dist/interfaces.cjs",
"./types": {
"import": "./dist/types.js",
"require": "./dist/types.cjs",
"types": "./dist/interfaces/index.d.ts"
},
"./stores": {
Expand Down
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export default defineConfig({
outDir: './dist',
lib: {
entry: {
composables: 'app/assets/composables/index.ts',
interfaces: 'app/assets/interfaces/index.ts',
api: 'app/assets/composables/index.ts',
types: 'app/assets/interfaces/index.ts',
stores: 'app/assets/stores/index.ts'
}
},
Expand Down

0 comments on commit 0252ec7

Please sign in to comment.