@tukuyomil032/bricklayer 1.0.44 → 1.0.45

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.
@@ -467,12 +467,13 @@ export default [
467
467
  }
468
468
  export function generateBiomeConfig() {
469
469
  const config = {
470
- $schema: 'https://biomejs.dev/schemas/1.9.4/schema.json',
470
+ $schema: 'https://biomejs.dev/schemas/2.4.9/schema.json',
471
471
  formatter: {
472
472
  enabled: true,
473
473
  indentStyle: 'space',
474
474
  indentWidth: 2,
475
475
  lineWidth: 100,
476
+ lineEnding: 'lf',
476
477
  },
477
478
  linter: {
478
479
  enabled: true,
@@ -487,7 +488,7 @@ export function generateBiomeConfig() {
487
488
  },
488
489
  },
489
490
  files: {
490
- ignore: ['dist', 'node_modules'],
491
+ includes: ['src/**/*.ts'],
491
492
  },
492
493
  };
493
494
  return `${JSON.stringify(config, null, 2)}\n`;
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ const program = new Command();
5
5
  program
6
6
  .name('brick')
7
7
  .description('Interactive CLI to scaffold TypeScript CLI projects')
8
- .version('1.0.6');
8
+ .version('1.0.45');
9
9
  program.addCommand(createCommand());
10
10
  program.addCommand(sampleCommand());
11
11
  program.parseAsync(process.argv).catch((err) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tukuyomil032/bricklayer",
3
3
  "private": false,
4
- "version": "1.0.44",
4
+ "version": "1.0.45",
5
5
  "description": "Interactive TypeScript CLI project scaffolder",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -9,10 +9,7 @@
9
9
  "bin": {
10
10
  "brick": "./dist/index.js"
11
11
  },
12
- "files": [
13
- "dist",
14
- "README.md"
15
- ],
12
+ "files": ["dist", "README.md"],
16
13
  "scripts": {
17
14
  "build": "tsc -p tsconfig.json",
18
15
  "postbuild": "node -e \"require('fs').chmodSync('dist/index.js', 0o755)\"",
@@ -25,12 +22,7 @@
25
22
  "biome:check": "biome check",
26
23
  "lint-staged": "lint-staged"
27
24
  },
28
- "keywords": [
29
- "cli",
30
- "scaffold",
31
- "typescript",
32
- "generator"
33
- ],
25
+ "keywords": ["cli", "scaffold", "typescript", "generator"],
34
26
  "author": "tukuyomil032",
35
27
  "license": "MIT",
36
28
  "repository": {
@@ -62,10 +54,7 @@
62
54
  "typescript-eslint": "^8.53.1"
63
55
  },
64
56
  "lint-staged": {
65
- "*.ts": [
66
- "biome format --write",
67
- "biome lint --write"
68
- ]
57
+ "*.ts": ["biome format --write", "biome lint --write"]
69
58
  },
70
59
  "packageManager": "pnpm@10.27.0"
71
60
  }