Skip to content

Commit 048db11

Browse files
committed
fix: do not require allowImportingTsExtensions
1 parent 60cff9d commit 048db11

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webpod/ps",
3-
"version": "0.0.0",
3+
"version": "0.0.0-beta.2",
44
"description": "A process lookup utility",
55
"publishConfig": {
66
"access": "public"
@@ -24,7 +24,8 @@
2424
"test": "concurrently 'npm:test:*'",
2525
"test:lint": "eslint -c src/test/lint/.eslintrc.json src",
2626
"test:unit": "c8 -r lcov -r text -o target/coverage -x src/scripts -x src/test -x target node --loader ts-node/esm --experimental-specifier-resolution=node src/scripts/test.mjs",
27-
"test:legacy": "node ./node_modules/mocha/bin/mocha -t 0 -R spec src/test/legacy/test.cjs"
27+
"test:legacy": "node ./node_modules/mocha/bin/mocha -t 0 -R spec src/test/legacy/test.cjs",
28+
"publish:draft": "npm run build && npm publish --no-git-tag-version"
2829
},
2930
"files": [
3031
"target/cjs",
@@ -38,7 +39,7 @@
3839
"pid"
3940
],
4041
"dependencies": {
41-
"@webpod/ingrid": "^0.0.0-beta.1",
42+
"@webpod/ingrid": "^0.0.0-beta.2",
4243
"zurk": "^0.0.32"
4344
},
4445
"devDependencies": {

src/main/ts/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { kill, lookup, tree } from './ps.ts'
1+
import { kill, lookup, tree } from './ps.js'
22

3-
export type * from './ps.ts'
4-
export { kill, lookup, tree } from './ps.ts'
3+
export type * from './ps.js'
4+
export { kill, lookup, tree } from './ps.js'
55
export default { lookup, kill, tree }

0 commit comments

Comments
 (0)