Skip to content

Commit

Permalink
Merge branch 'main' into build-config
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Dec 31, 2023
2 parents 2a40d03 + 440a5c4 commit 72b7b71
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 10 deletions.
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
**/.next
**/.nx/cache
**/.svelte-kit
**/build
**/coverage
**/dist
**/docs
Expand Down
2 changes: 1 addition & 1 deletion bin/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import interpret from 'interpret'
const argv = minimist(args)
import { pathToFileURL } from 'node:url'
import { createRequire } from 'node:module'
import { publish } from '../src/publish.js'
import { publish } from '../src/publish/index.js'
import { Command, Option } from 'commander'
import fs from 'node:fs'
import { dirname, join } from 'node:path'
Expand Down
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@
"url": "https://github.com/sponsors/tannerlinsley"
},
"type": "module",
"types": "src/index.d.ts",
"module": "src/index.js",
"exports": {
".": {
"./publish": {
"import": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
"types": "./src/publish/index.d.ts",
"default": "./src/publish/index.js"
}
},
"./build": {
Expand Down
1 change: 0 additions & 1 deletion src/index.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/index.js

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"baseUrl": ".",
"allowUnreachableCode": true
},
"include": ["prettier.config.js", "src"]
"include": ["bin", "prettier.config.js", "src"]
}

0 comments on commit 72b7b71

Please sign in to comment.