create-next-pro-cli 0.1.27 → 0.1.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-next-pro-cli",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "Advanced Next.js project scaffolder with i18n, Tailwind, App Router and more.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -38,12 +38,13 @@
38
38
  "format:check": "prettier --check --ignore-unknown .github/workflows/ci.yml .husky scripts bunfig.toml bin.bun.ts bin.node.ts src tsup.config.ts eslint.config.mjs package.json tsconfig.base.json tsconfig.json tsconfig.node.json",
39
39
  "lint": "eslint bin.bun.ts bin.node.ts scripts src tsup.config.ts",
40
40
  "typecheck": "tsc --project tsconfig.json --noEmit",
41
+ "language:check": "bun scripts/check-public-language.ts",
41
42
  "test": "bun test",
42
43
  "clean": "rm -rf dist",
43
44
  "build": "bun run clean && bun run build:node && bun run build:bun && cp scripts/create-next-pro dist/create-next-pro && chmod +x dist/create-next-pro",
44
45
  "build:node": "tsup",
45
46
  "build:bun": "bun build bin.bun.ts --outdir dist --target=bun",
46
- "check": "bun run format:check && bun run lint && bun run typecheck && bun test && bun run build",
47
+ "check": "bun run format:check && bun run lint && bun run typecheck && bun run language:check && bun test && bun run build",
47
48
  "prepublishOnly": "bun run check",
48
49
  "commitlint:range": "commitlint",
49
50
  "release:check": "bun scripts/release.ts check",