isolate-package 1.3.3 → 1.4.1-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.
package/package.json CHANGED
@@ -1,54 +1,76 @@
1
1
  {
2
2
  "name": "isolate-package",
3
- "version": "1.3.3",
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.",
3
+ "version": "1.4.1-0",
4
+ "description": "Isolate a monorepo package with its shared dependencies to form a self-contained directory, compatible with Firebase deploy",
5
5
  "author": "Thijs Koerselman",
6
6
  "license": "MIT",
7
7
  "keywords": [
8
8
  "monorepo",
9
- "workspace",
9
+ "turborepo",
10
+ "workspaces",
10
11
  "isolate",
11
12
  "package",
12
13
  "deploy",
13
14
  "firebase",
14
- "ci",
15
- "pnpm",
16
- "yarn",
17
- "npm"
15
+ "ci"
18
16
  ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/0x80/isolate-package.git"
20
+ },
19
21
  "type": "module",
20
- "module": "dist/index.mjs",
22
+ "?": "Need to support older versions of node for firebase-tools?",
23
+ "main": "./dist/index.cjs",
24
+ "types": "./dist/types/index.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/types/index.d.ts",
28
+ "import": "./dist/index.js",
29
+ "require": "./dist/index.cjs"
30
+ }
31
+ },
21
32
  "files": [
22
33
  "dist"
23
34
  ],
24
35
  "bin": {
25
- "isolate": "dist/index.mjs"
36
+ "isolate": "dist/isolate-bin.mjs"
26
37
  },
27
38
  "dependencies": {
39
+ "@pnpm/exec": "^2.0.0",
40
+ "@pnpm/exportable-manifest": "^5.0.9",
41
+ "@pnpm/lockfile-file": "^8.1.4",
42
+ "@pnpm/prune-lockfile": "^5.0.7",
43
+ "@pnpm/read-project-manifest": "^5.0.8",
44
+ "@pnpm/types": "^9.4.0",
28
45
  "chalk": "^5.2.0",
29
46
  "fs-extra": "^11.1.1",
30
47
  "glob": "^10.2.2",
31
- "lodash-es": "^4.17.21",
32
48
  "outdent": "^0.8.0",
49
+ "ramda": "^0.29.1",
50
+ "rename-overwrite": "^4.0.4",
33
51
  "source-map-support": "^0.5.21",
34
52
  "strip-json-comments": "^5.0.1",
35
53
  "tar-fs": "^2.1.1",
36
54
  "yaml": "^2.2.2"
37
55
  },
38
56
  "devDependencies": {
57
+ "@npmcli/arborist": "^7.2.1",
39
58
  "@types/fs-extra": "^11.0.1",
40
59
  "@types/lodash-es": "^4.17.7",
41
60
  "@types/node": "^18.16.2",
61
+ "@types/ramda": "^0.29.9",
42
62
  "@types/source-map-support": "^0.5.6",
43
63
  "@types/tar-fs": "^2.0.1",
64
+ "eslint-config-0x80": "^0.0.0",
44
65
  "prettier": "^3.0.0",
66
+ "prettier-plugin-jsdoc": "^1.1.1",
45
67
  "tsup": "^6.7.0",
46
68
  "type-fest": "^3.9.0",
47
69
  "typescript": "^5.0.4",
48
70
  "vitest": "^0.30.1"
49
71
  },
50
72
  "scripts": {
51
- "build": "tsup-node",
73
+ "build": "tsup-node && mv dist/isolate-bin.js dist/isolate-bin.mjs",
52
74
  "build:watch": "tsup-node --watch",
53
75
  "test": "vitest",
54
76
  "format": "prettier --write .",