brady-cli 1.2.5 → 1.2.6

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.2.6](https://github.com/BHarper77/brady-cli/compare/v1.2.5...v1.2.6) (2026-05-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * removed eslint from project init ([98a3c61](https://github.com/BHarper77/brady-cli/commit/98a3c61ff5c3cfec5d3449119ec7991b8bb2ea7a))
7
+
1
8
  ## [1.2.5](https://github.com/BHarper77/brady-cli/compare/v1.2.4...v1.2.5) (2026-05-09)
2
9
 
3
10
 
package/dist/index.js CHANGED
@@ -4296,13 +4296,6 @@ var {
4296
4296
  // src/index.ts
4297
4297
  var import_promises = require("fs/promises");
4298
4298
  var import_path = __toESM(require("path"));
4299
-
4300
- // src/eslintConfig.json
4301
- var eslintConfig_default = {
4302
- extends: "@bharper7/eslint-config"
4303
- };
4304
-
4305
- // src/index.ts
4306
4299
  var DOTFILES_OWNER = "bharper77";
4307
4300
  var DOTFILES_REPO = "dotfiles";
4308
4301
  var SKILLS_PATH = ".agents/skills";
@@ -4351,10 +4344,6 @@ async function init(opts) {
4351
4344
  ].join(" ");
4352
4345
  exec2(`npm i -D ${devDependencies}`, opts.directory);
4353
4346
  exec2("tsc --init", opts.directory);
4354
- await (0, import_promises.writeFile)(
4355
- `${opts.directory}/.eslintrc.json`,
4356
- JSON.stringify(eslintConfig_default)
4357
- );
4358
4347
  exec2("echo 'node_modules' 'dist' > .eslintignore", opts.directory);
4359
4348
  }
4360
4349
  async function listSkills() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brady-cli",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "packageManager": "pnpm@10.10.0",
package/src/index.ts CHANGED
@@ -5,7 +5,6 @@ import { execSync, spawnSync } from "child_process";
5
5
  import { Command } from "commander";
6
6
  import { mkdir, readFile, writeFile } from "fs/promises";
7
7
  import path from "path";
8
- import eslintConfigTemplate from "./eslintConfig.json";
9
8
 
10
9
  const DOTFILES_OWNER = "bharper77";
11
10
  const DOTFILES_REPO = "dotfiles";
@@ -84,11 +83,6 @@ async function init(opts: Options) {
84
83
  exec(`npm i -D ${devDependencies}`, opts.directory);
85
84
  exec("tsc --init", opts.directory);
86
85
 
87
- // eslint
88
- await writeFile(
89
- `${opts.directory}/.eslintrc.json`,
90
- JSON.stringify(eslintConfigTemplate),
91
- );
92
86
  exec("echo 'node_modules' 'dist' > .eslintignore", opts.directory);
93
87
  }
94
88
 
@@ -1,3 +0,0 @@
1
- {
2
- "extends": "@bharper7/eslint-config"
3
- }