@nuucognition/cli-core 0.0.1-beta.1 → 0.0.1-beta.2

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.js +2 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -130,7 +130,7 @@ async function removeFeatureOverride(path, featureId) {
130
130
  // src/config/index.ts
131
131
  var CONFIG_FILENAME = "config.toml";
132
132
  function getConfigDir(cliname) {
133
- return join(homedir(), ".nuucognition", `.${cliname}`);
133
+ return join(homedir(), ".nuucognition", cliname);
134
134
  }
135
135
  function getConfigPath(cliname) {
136
136
  return join(getConfigDir(cliname), CONFIG_FILENAME);
@@ -719,7 +719,7 @@ function tierInstruction(requiredTier, cliname, featureId) {
719
719
  }
720
720
  return [
721
721
  `Run \`${cliname} --enable ${featureId}\` for one invocation`,
722
- `or set \`[features].${featureId} = true\` in \`~/.nuucognition/.${cliname}/config.toml\`.`
722
+ `or set \`[features].${featureId} = true\` in \`~/.nuucognition/${cliname}/config.toml\`.`
723
723
  ];
724
724
  }
725
725
  var FeatureNotAvailableError = class extends CliError {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuucognition/cli-core",
3
- "version": "0.0.1-beta.1",
3
+ "version": "0.0.1-beta.2",
4
4
  "description": "Shared CLI infrastructure for the NUU ecosystem",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -33,8 +33,8 @@
33
33
  "eslint": "^9.32.0",
34
34
  "tsup": "^8.3.5",
35
35
  "typescript": "^5.9.2",
36
- "@nuucognition/typescript-config": "0.0.0",
37
- "@nuucognition/eslint-config": "0.0.0"
36
+ "@nuucognition/eslint-config": "0.0.0",
37
+ "@nuucognition/typescript-config": "0.0.0"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsup",