Skip to content

Commit

Permalink
Merge pull request #159 from gentlementlegen/development
Browse files Browse the repository at this point in the history
refactor: update module paths and tsup config for modern output
  • Loading branch information
gentlementlegen authored Oct 21, 2024
2 parents e62393b + c517513 commit 40a7a2d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Binary file modified bun.lockb
Binary file not shown.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"version": "2.1.5",
"private": false,
"description": "The kernel for UbiquityOS.",
"module": "dist/esm/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
Expand Down Expand Up @@ -58,8 +58,8 @@
"@octokit/plugin-retry": "7.1.1",
"@octokit/plugin-throttling": "9.3.1",
"@octokit/rest": "^21.0.2",
"@octokit/types": "13.5.0",
"@octokit/webhooks": "13.2.8",
"@octokit/types": "^13.5.0",
"@octokit/webhooks": "13.3.0",
"@octokit/webhooks-types": "7.5.1",
"@sinclair/typebox": "0.32.35",
"@ubiquity-os/ubiquity-os-logger": "^1.3.2",
Expand Down
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export default defineConfig({
sourcemap: false,
clean: true,
dts: true,
legacyOutput: true,
legacyOutput: false,
});

0 comments on commit 40a7a2d

Please sign in to comment.