@alcalzone/monopack 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -11,4 +11,4 @@ Run this inside the root of your monorepo:
11
11
  npx @alcalzone/monopack [--target <target-dir>]
12
12
  ```
13
13
 
14
- To specify a target directory, use the `--target` flag. By default, the tarballs will be created in the `.prodpack` directory.
14
+ To specify a target directory, use the `--target` flag. By default, the tarballs will be created in the `.monopack` directory.
package/build/cli.js CHANGED
@@ -21,7 +21,7 @@ async function main() {
21
21
  const workspaces = [];
22
22
  const targetArgsIndex = process.argv.indexOf("--target");
23
23
  let outDir = (targetArgsIndex > -1 && process.argv[targetArgsIndex + 1]) ||
24
- ".prodpack";
24
+ ".monopack";
25
25
  if (!path_1.default.isAbsolute(outDir)) {
26
26
  outDir = path_1.default.join(process.cwd(), outDir);
27
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alcalzone/monopack",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Like `npm pack` or `yarn pack`, but for entire monorepos.",
5
5
  "main": "build/cli.js",
6
6
  "types": "build/cli.d.ts",