jiek 2.0.2-alpha.8 → 2.0.2-alpha.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -116,7 +116,7 @@ async function getSelectedProjectsGraph(filter = commander.program.getOptionValu
116
116
 
117
117
  var name = "jiek";
118
118
  var type = "module";
119
- var version = "2.0.2-alpha.7";
119
+ var version = "2.0.2-alpha.8";
120
120
  var description$1 = "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.";
121
121
  var author = "YiJie <yijie4188@gmail.com>";
122
122
  var repository = {
package/cli-only-build.js CHANGED
@@ -108,7 +108,7 @@ async function getSelectedProjectsGraph(filter = program.getOptionValue("filter"
108
108
 
109
109
  var name = "jiek";
110
110
  var type = "module";
111
- var version = "2.0.2-alpha.7";
111
+ var version = "2.0.2-alpha.8";
112
112
  var description$1 = "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.";
113
113
  var author = "YiJie <yijie4188@gmail.com>";
114
114
  var repository = {
package/cli.cjs CHANGED
@@ -4675,6 +4675,7 @@ async function prepublish() {
4675
4675
  throw new Error(`${dir}/package.json files field must be an array of string`);
4676
4676
  }
4677
4677
  }
4678
+ console.log({ resolvedOutdir });
4678
4679
  const files = oldJSON.files ?? fs__default.default.readdirSync(resolveByDir(".")).filter((file) => file !== "node_modules" && file !== resolvedOutdir);
4679
4680
  for (const file of files) {
4680
4681
  const path2 = resolveByDir(file);
package/cli.js CHANGED
@@ -4645,6 +4645,7 @@ async function prepublish() {
4645
4645
  throw new Error(`${dir}/package.json files field must be an array of string`);
4646
4646
  }
4647
4647
  }
4648
+ console.log({ resolvedOutdir });
4648
4649
  const files = oldJSON.files ?? fs.readdirSync(resolveByDir(".")).filter((file) => file !== "node_modules" && file !== resolvedOutdir);
4649
4650
  for (const file of files) {
4650
4651
  const path2 = resolveByDir(file);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jiek",
3
3
  "type": "module",
4
- "version": "2.0.2-alpha.8",
4
+ "version": "2.0.2-alpha.9",
5
5
  "description": "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.",
6
6
  "author": "YiJie <yijie4188@gmail.com>",
7
7
  "repository": {