frontpl 0.3.1 → 0.3.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.
package/README.md CHANGED
@@ -30,6 +30,7 @@ Follow the prompts to choose:
30
30
  - Optional tooling: `oxlint`, `oxfmt`, `vitest`, `tsdown`
31
31
 
32
32
  When `oxlint` is enabled, generated projects use `@kingsword/lint-config` via `oxlint.config.ts`.
33
+ Generated lint-related dependencies (`oxlint`, `oxlint-tsgolint`, `oxfmt`, `@kingsword/lint-config`) default to `latest` in scaffolded `package.json`.
33
34
 
34
35
  - Git init
35
36
  - GitHub Actions workflows:
package/dist/cli.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { n as runCi, t as runInit } from "./init-BGuupDrG.mjs";
2
+ import { n as runCi, t as runInit } from "./init-oJwslpqP.mjs";
3
3
  import bin from "tiny-bin";
4
4
 
5
5
  //#region src/cli.ts
package/dist/index.mjs CHANGED
@@ -1,3 +1,3 @@
1
- import { a as oxlintConfigTemplate, i as githubDependabotTemplate, n as runCi, o as packageJsonTemplate, r as githubCliCiWorkflowTemplate, t as runInit } from "./init-BGuupDrG.mjs";
1
+ import { a as oxlintConfigTemplate, i as githubDependabotTemplate, n as runCi, o as packageJsonTemplate, r as githubCliCiWorkflowTemplate, t as runInit } from "./init-oJwslpqP.mjs";
2
2
 
3
3
  export { githubCliCiWorkflowTemplate, githubDependabotTemplate, oxlintConfigTemplate, packageJsonTemplate, runCi, runInit };
@@ -857,7 +857,7 @@ async function runInit({ nameArg }) {
857
857
  useOxlint,
858
858
  oxlintVersion: "latest",
859
859
  oxlintTsgolintVersion: "latest",
860
- kingswordLintConfigVersion: "^0.1.1",
860
+ kingswordLintConfigVersion: "latest",
861
861
  useOxfmt,
862
862
  oxfmtVersion: "latest",
863
863
  useVitest,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frontpl",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Interactive CLI to scaffold standardized frontend project templates.",
5
5
  "keywords": [
6
6
  "cli",
@@ -55,9 +55,9 @@
55
55
  "devDependencies": {
56
56
  "@kingsword/lint-config": "^0.1.1",
57
57
  "@types/node": "^25.0.10",
58
- "oxfmt": "^0.28.0",
59
- "oxlint": "^1.43.0",
60
- "oxlint-tsgolint": "^0.11.1",
58
+ "oxfmt": "^0.31.0",
59
+ "oxlint": "^1.46.0",
60
+ "oxlint-tsgolint": "^0.11.5",
61
61
  "tsdown": "^0.20.1",
62
62
  "typescript": "^5.9.3"
63
63
  },