isolate-package 1.2.0-rc1 → 1.2.0-rc2

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +0 -0
  2. package/package.json +10 -10
package/dist/index.d.ts CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isolate-package",
3
- "version": "1.2.0-rc1",
3
+ "version": "1.2.0-rc2",
4
4
  "description": "Isolate a monorepo package by bundling the build output with its shared workspace packages and lock file to form a self-contained directory.",
5
5
  "author": "Thijs Koerselman",
6
6
  "license": "MIT",
@@ -24,14 +24,6 @@
24
24
  "bin": {
25
25
  "isolate": "dist/index.mjs"
26
26
  },
27
- "scripts": {
28
- "build": "tsup-node",
29
- "build:watch": "tsup-node --watch",
30
- "test": "vitest",
31
- "format": "prettier --write .",
32
- "lint:format": "prettier --check .",
33
- "compile:watch": "tsc --noEmit -w"
34
- },
35
27
  "dependencies": {
36
28
  "chalk": "^5.2.0",
37
29
  "fs-extra": "^11.1.1",
@@ -54,5 +46,13 @@
54
46
  "type-fest": "^3.9.0",
55
47
  "typescript": "^5.0.4",
56
48
  "vitest": "^0.30.1"
49
+ },
50
+ "scripts": {
51
+ "build": "tsup-node",
52
+ "build:watch": "tsup-node --watch",
53
+ "test": "vitest",
54
+ "format": "prettier --write .",
55
+ "lint:format": "prettier --check .",
56
+ "compile:watch": "tsc --noEmit -w"
57
57
  }
58
- }
58
+ }