tsds-lib-test 1.17.7 → 1.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ export { default as installGitRepo } from './lib/installGitRepo.js';
@@ -0,0 +1,2 @@
1
+ import type { CommandCallback, CommandOptions } from 'tsds-lib';
2
+ export default function installGitRepo(repo: string, dest: string, options: CommandOptions | CommandCallback, callback?: CommandCallback): undefined;
@@ -0,0 +1,3 @@
1
+ export interface InstallOptions {
2
+ clean?: boolean;
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsds-lib-test",
3
- "version": "1.17.7",
3
+ "version": "1.18.0",
4
4
  "description": "Development stack for TypeScript libraries",
5
5
  "keywords": [
6
6
  "dev",
@@ -23,14 +23,14 @@
23
23
  "./package.json": "./package.json"
24
24
  },
25
25
  "main": "dist/cjs/index.js",
26
- "types": "dist/cjs/index.d.ts",
26
+ "types": "dist/cjs/index.d.cts",
27
27
  "files": [
28
28
  "dist",
29
29
  "assets",
30
30
  "scripts"
31
31
  ],
32
32
  "scripts": {
33
- "build": "node ../../scripts/build.cjs",
33
+ "build": "npx ts-dev-stack build",
34
34
  "format": "biome check --write --unsafe src/",
35
35
  "test": "",
36
36
  "test2": "mocha --no-timeouts test/**/*.test.*",