@baseplate-dev/core-generators 0.5.1 → 0.5.3
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 +528 -0
- package/dist/constants/core-packages.d.ts +14 -12
- package/dist/constants/core-packages.d.ts.map +1 -1
- package/dist/constants/core-packages.js +14 -12
- package/dist/constants/core-packages.js.map +1 -1
- package/dist/generators/node/eslint/eslint.generator.d.ts.map +1 -1
- package/dist/generators/node/eslint/eslint.generator.js +4 -0
- package/dist/generators/node/eslint/eslint.generator.js.map +1 -1
- package/dist/generators/node/eslint/generated/index.d.ts +1 -0
- package/dist/generators/node/eslint/generated/index.d.ts.map +1 -1
- package/dist/generators/node/eslint/generated/typed-templates.d.ts +1 -0
- package/dist/generators/node/eslint/generated/typed-templates.d.ts.map +1 -1
- package/dist/generators/node/eslint/generated/typed-templates.js +1 -0
- package/dist/generators/node/eslint/generated/typed-templates.js.map +1 -1
- package/dist/generators/node/eslint/react-rules.d.ts.map +1 -1
- package/dist/generators/node/eslint/react-rules.js +10 -1
- package/dist/generators/node/eslint/react-rules.js.map +1 -1
- package/dist/generators/node/eslint/tailwind-rules.d.ts +2 -0
- package/dist/generators/node/eslint/tailwind-rules.d.ts.map +1 -0
- package/dist/generators/node/eslint/tailwind-rules.js +28 -0
- package/dist/generators/node/eslint/tailwind-rules.js.map +1 -0
- package/dist/generators/node/eslint/templates/eslint.config.js +5 -1
- package/dist/generators/node/node/node.generator.d.ts.map +1 -1
- package/dist/generators/node/node/node.generator.js.map +1 -1
- package/dist/generators/node/node/package-dependencies-container.d.ts.map +1 -1
- package/dist/generators/node/node/package-dependencies-container.js.map +1 -1
- package/dist/generators/node/node-git-ignore/node-git-ignore.generator.js +1 -1
- package/dist/generators/node/node-git-ignore/node-git-ignore.generator.js.map +1 -1
- package/dist/generators/node/prettier/prettier.generator.d.ts.map +1 -1
- package/dist/generators/node/prettier/prettier.generator.js +16 -4
- package/dist/generators/node/prettier/prettier.generator.js.map +1 -1
- package/dist/generators/node/typescript/typescript.generator.d.ts +14 -0
- package/dist/generators/node/typescript/typescript.generator.d.ts.map +1 -1
- package/dist/generators/node/typescript/typescript.generator.js +17 -0
- package/dist/generators/node/typescript/typescript.generator.js.map +1 -1
- package/dist/renderers/extractor/plugins/barrel-export.d.ts.map +1 -1
- package/dist/renderers/extractor/plugins/barrel-export.js +8 -6
- package/dist/renderers/extractor/plugins/barrel-export.js.map +1 -1
- package/dist/renderers/extractor/plugins/template-paths/template-paths.plugin.js +1 -1
- package/dist/renderers/extractor/plugins/template-paths/template-paths.plugin.js.map +1 -1
- package/dist/renderers/extractor/plugins/template-renderers/renderers-file.js +1 -1
- package/dist/renderers/extractor/plugins/template-renderers/renderers-file.js.map +1 -1
- package/dist/renderers/text/utils.js +2 -2
- package/dist/renderers/text/utils.js.map +1 -1
- package/dist/renderers/typescript/extractor/apply-simple-replacements.js +2 -2
- package/dist/renderers/typescript/extractor/apply-simple-replacements.js.map +1 -1
- package/dist/renderers/typescript/extractor/organize-ts-template-imports.d.ts.map +1 -1
- package/dist/renderers/typescript/extractor/organize-ts-template-imports.js +26 -1
- package/dist/renderers/typescript/extractor/organize-ts-template-imports.js.map +1 -1
- package/dist/renderers/typescript/extractor/parse-simple-replacements.js +1 -1
- package/dist/renderers/typescript/extractor/parse-simple-replacements.js.map +1 -1
- package/dist/renderers/typescript/extractor/render-ts-template-file.d.ts.map +1 -1
- package/dist/renderers/typescript/extractor/render-ts-template-file.js.map +1 -1
- package/dist/renderers/typescript/extractor/render-ts-template-renderers.js +2 -2
- package/dist/renderers/typescript/extractor/render-ts-template-renderers.js.map +1 -1
- package/dist/renderers/typescript/fragments/types.d.ts.map +1 -1
- package/dist/renderers/typescript/renderers/file.d.ts.map +1 -1
- package/dist/renderers/typescript/renderers/file.js +1 -1
- package/dist/renderers/typescript/renderers/file.js.map +1 -1
- package/dist/renderers/typescript/renderers/template.d.ts.map +1 -1
- package/dist/renderers/typescript/renderers/template.js +3 -3
- package/dist/renderers/typescript/renderers/template.js.map +1 -1
- package/dist/renderers/typescript/templates/types.d.ts.map +1 -1
- package/dist/renderers/typescript/templates/types.js.map +1 -1
- package/dist/test-helpers/utils.js +3 -3
- package/dist/test-helpers/utils.js.map +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,528 @@
|
|
|
1
|
+
# @baseplate-dev/core-generators
|
|
2
|
+
|
|
3
|
+
## 0.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#769](https://github.com/halfdomelabs/baseplate/pull/769) [`cb2446e`](https://github.com/halfdomelabs/baseplate/commit/cb2446e235794bf5d45a1671ae320ccce12eb504) Thanks [@kingston](https://github.com/kingston)! - Fix hard-coded email template imports in auth plugin
|
|
8
|
+
|
|
9
|
+
- [#771](https://github.com/halfdomelabs/baseplate/pull/771) [`6c190fe`](https://github.com/halfdomelabs/baseplate/commit/6c190fe50240f0ddc984af757b7900d053433bb1) Thanks [@kingston](https://github.com/kingston)! - Add eslint-plugin-better-tailwindcss for Tailwind correctness linting and improve ESLint config API
|
|
10
|
+
|
|
11
|
+
**Monorepo packages:**
|
|
12
|
+
- Add `eslint-plugin-better-tailwindcss` with `correctness` preset for linting Tailwind class conflicts, duplicates, and invalid classes
|
|
13
|
+
- Keep `prettier-plugin-tailwindcss` for formatting (class ordering, line breaks)
|
|
14
|
+
- Create `defineReactEslintConfig()` high-level API with `dirname`, `includeStorybook`, `tailwindEntryPoint`, and `ignores` options
|
|
15
|
+
- Create `defineNodeEslintConfig()` high-level API with `dirname`, `extraDefaultProjectFiles`, and `ignores` options
|
|
16
|
+
- Update `generateTypescriptEslintConfig()` to accept single options object with `rootDir` for `tsconfigRootDir` support
|
|
17
|
+
- Rename `storybookTypescriptEslintOptions` to `storybookTypescriptExtraDevDependencies` for clarity
|
|
18
|
+
- Remove all default exports from ESLint configs to require explicit `dirname` parameter
|
|
19
|
+
|
|
20
|
+
**Generated projects:**
|
|
21
|
+
- Add `eslint-plugin-better-tailwindcss` and `tailwindcss` as dev dependencies for React apps
|
|
22
|
+
- Add Tailwind correctness linting to generated React ESLint configs
|
|
23
|
+
- Add `tsconfigRootDir: import.meta.dirname` to all generated ESLint configs for better TypeScript support
|
|
24
|
+
|
|
25
|
+
- [#766](https://github.com/halfdomelabs/baseplate/pull/766) [`254d675`](https://github.com/halfdomelabs/baseplate/commit/254d675079930e5b569bf1c0c4576f1459d23a03) Thanks [@kingston](https://github.com/kingston)! - Add TypeScript outDir to gitignore when noEmit is false or unset
|
|
26
|
+
|
|
27
|
+
- [#768](https://github.com/halfdomelabs/baseplate/pull/768) [`9129381`](https://github.com/halfdomelabs/baseplate/commit/9129381e17504136837d07deb9958708791da43e) Thanks [@kingston](https://github.com/kingston)! - Upgrade @vitest/eslint-plugin to 1.6.9
|
|
28
|
+
- @vitest/eslint-plugin: 1.6.6 → 1.6.9
|
|
29
|
+
|
|
30
|
+
- Updated dependencies []:
|
|
31
|
+
- @baseplate-dev/sync@0.5.3
|
|
32
|
+
- @baseplate-dev/utils@0.5.3
|
|
33
|
+
|
|
34
|
+
## 0.5.2
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- [#755](https://github.com/halfdomelabs/baseplate/pull/755) [`02740a6`](https://github.com/halfdomelabs/baseplate/commit/02740a6e230c7fbf28fc768543353e847671c51b) Thanks [@kingston](https://github.com/kingston)! - Upgrade linting packages
|
|
39
|
+
|
|
40
|
+
**Major version bumps:**
|
|
41
|
+
- eslint: 9.32.0 → 9.39.2
|
|
42
|
+
- @eslint/js: 9.32.0 → 9.39.2
|
|
43
|
+
- eslint-plugin-perfectionist: 4.15.0 → 5.4.0
|
|
44
|
+
- eslint-plugin-react-hooks: 5.2.0 → 7.0.1
|
|
45
|
+
- eslint-plugin-unicorn: 60.0.0 → 62.0.0
|
|
46
|
+
- globals: 16.4.0 → 17.3.0
|
|
47
|
+
- prettier-plugin-packagejson: 2.5.19 → 3.0.0
|
|
48
|
+
- storybook: 10.1.10 → 10.2.8
|
|
49
|
+
|
|
50
|
+
**Minor/patch bumps:**
|
|
51
|
+
- @vitest/eslint-plugin: 1.3.4 → 1.6.6 (tools), 1.6.5 → 1.6.6 (core-generators)
|
|
52
|
+
- eslint-plugin-storybook: 10.1.10 → 10.2.3
|
|
53
|
+
- prettier-plugin-tailwindcss: 0.6.14 → 0.7.2
|
|
54
|
+
- typescript-eslint: 8.38.0 → 8.54.0
|
|
55
|
+
- @types/eslint-plugin-jsx-a11y: 6.10.0 → 6.10.1
|
|
56
|
+
|
|
57
|
+
**Config changes:**
|
|
58
|
+
- Updated eslint-plugin-react-hooks v7 API: `configs['recommended-latest']` → `configs.flat['recommended-latest']`
|
|
59
|
+
- Disabled new strict rules from react-hooks v7 (refs, set-state-in-effect, preserve-manual-memoization, incompatible-library)
|
|
60
|
+
|
|
61
|
+
- [#756](https://github.com/halfdomelabs/baseplate/pull/756) [`dd40bcd`](https://github.com/halfdomelabs/baseplate/commit/dd40bcd219c79f0cd7b66c0427c77deda0664072) Thanks [@kingston](https://github.com/kingston)! - Upgrade packages to fix security vulnerabilities and update to latest versions
|
|
62
|
+
|
|
63
|
+
**Security fixes:**
|
|
64
|
+
- @modelcontextprotocol/sdk: 1.25.1 → 1.26.0 (fixes CVE-2026-25536 - cross-client data leak)
|
|
65
|
+
- fastify: 5.6.2 → 5.7.4 (security patches)
|
|
66
|
+
- diff: 8.0.2 → 8.0.3 (fixes CVE-2026-24001 - DoS vulnerability)
|
|
67
|
+
- testcontainers: 11.10.0 → 11.11.0 (fixes undici vulnerability)
|
|
68
|
+
|
|
69
|
+
**Package updates (monorepo):**
|
|
70
|
+
- @tailwindcss/vite: 4.1.13 → 4.1.18
|
|
71
|
+
- tailwindcss: 4.1.13 → 4.1.18
|
|
72
|
+
- @tanstack/react-router: 1.139.7 → 1.159.5
|
|
73
|
+
- @tanstack/router-plugin: 1.139.7 → 1.159.5
|
|
74
|
+
- @testing-library/jest-dom: 6.6.3 → 6.9.1
|
|
75
|
+
- concurrently: 9.0.1 → 9.2.1
|
|
76
|
+
- ts-morph: 26.0.0 → 27.0.2
|
|
77
|
+
|
|
78
|
+
**Package updates (generated projects):**
|
|
79
|
+
- prisma/@prisma/client/@prisma/adapter-pg: 7.2.0 → 7.4.0
|
|
80
|
+
- postmark: 4.0.2 → 4.0.5
|
|
81
|
+
- axios: 1.12.0 → 1.13.5
|
|
82
|
+
|
|
83
|
+
- [#758](https://github.com/halfdomelabs/baseplate/pull/758) [`7d1a9d6`](https://github.com/halfdomelabs/baseplate/commit/7d1a9d6d381279434f2ac632e9f8accde34dda25) Thanks [@kingston](https://github.com/kingston)! - Upgrade prettier to 3.8.1
|
|
84
|
+
- prettier: 3.6.2 → 3.8.1
|
|
85
|
+
- Updated test fixtures to match new formatting behavior
|
|
86
|
+
|
|
87
|
+
- [#757](https://github.com/halfdomelabs/baseplate/pull/757) [`63bd074`](https://github.com/halfdomelabs/baseplate/commit/63bd074b3b24b0978d4271a5bc76a8531b0f60c2) Thanks [@kingston](https://github.com/kingston)! - Upgrade TypeScript to 5.9.3
|
|
88
|
+
- typescript: 5.8.3 → 5.9.3
|
|
89
|
+
|
|
90
|
+
- Updated dependencies [[`dd40bcd`](https://github.com/halfdomelabs/baseplate/commit/dd40bcd219c79f0cd7b66c0427c77deda0664072)]:
|
|
91
|
+
- @baseplate-dev/sync@0.5.2
|
|
92
|
+
- @baseplate-dev/utils@0.5.2
|
|
93
|
+
|
|
94
|
+
## 0.5.1
|
|
95
|
+
|
|
96
|
+
### Patch Changes
|
|
97
|
+
|
|
98
|
+
- Updated dependencies []:
|
|
99
|
+
- @baseplate-dev/sync@0.5.1
|
|
100
|
+
- @baseplate-dev/utils@0.5.1
|
|
101
|
+
|
|
102
|
+
## 0.5.0
|
|
103
|
+
|
|
104
|
+
### Patch Changes
|
|
105
|
+
|
|
106
|
+
- [#732](https://github.com/halfdomelabs/baseplate/pull/732) [`fbabdec`](https://github.com/halfdomelabs/baseplate/commit/fbabdecf6715c21799d1c224b3a2162ef1f49797) Thanks [@kingston](https://github.com/kingston)! - Remove root: 'src/' from vitest.config.ts
|
|
107
|
+
|
|
108
|
+
- [#735](https://github.com/halfdomelabs/baseplate/pull/735) [`9b31726`](https://github.com/halfdomelabs/baseplate/commit/9b31726ee0dce77dc7b16fa334eb597d86349599) Thanks [@kingston](https://github.com/kingston)! - Support ES2023 in Vite tsconfig generators and re-enable replaceAll ESLint rule for React apps
|
|
109
|
+
|
|
110
|
+
- [#731](https://github.com/halfdomelabs/baseplate/pull/731) [`97bd14e`](https://github.com/halfdomelabs/baseplate/commit/97bd14e381206b54e55c22264d1d406e83146146) Thanks [@kingston](https://github.com/kingston)! - Add support for library packages in addition to apps
|
|
111
|
+
- Add `packages` array to ProjectDefinition schema with node-library type
|
|
112
|
+
- Add `packagesFolder` to MonorepoSettings (default: "packages")
|
|
113
|
+
- Create node-library generator with tsc build configuration
|
|
114
|
+
- Add library package compiler for code generation
|
|
115
|
+
- Update workspace patterns to include packages/\* folder
|
|
116
|
+
- Add UI for creating and managing library packages in the Apps section
|
|
117
|
+
|
|
118
|
+
- [#733](https://github.com/halfdomelabs/baseplate/pull/733) [`2d5abd5`](https://github.com/halfdomelabs/baseplate/commit/2d5abd53fccfc2b15f8142fc796c5e4ea4c2f92a) Thanks [@kingston](https://github.com/kingston)! - Upgrade pnpm to 10.27.0 and add `blockExoticSubdeps: true` to generated pnpm-workspace.yaml
|
|
119
|
+
|
|
120
|
+
- [#734](https://github.com/halfdomelabs/baseplate/pull/734) [`8bfc742`](https://github.com/halfdomelabs/baseplate/commit/8bfc742b8a93393a5539babfd11b97a88ee9c39e) Thanks [@kingston](https://github.com/kingston)! - Upgrade vitest to 4.0.16
|
|
121
|
+
- vitest: 3.2.4 → 4.0.16
|
|
122
|
+
- @vitest/eslint-plugin: 1.3.4 → 1.6.5
|
|
123
|
+
|
|
124
|
+
Breaking changes addressed:
|
|
125
|
+
- Updated `UserConfig` type to `ViteUserConfig` in vitest config files
|
|
126
|
+
- Fixed mock type annotations for vitest 4.0 compatibility
|
|
127
|
+
|
|
128
|
+
- Updated dependencies [[`c7d373e`](https://github.com/halfdomelabs/baseplate/commit/c7d373ebaaeda2522515fdaeae0d37d0cd9ce7fe), [`8bfc742`](https://github.com/halfdomelabs/baseplate/commit/8bfc742b8a93393a5539babfd11b97a88ee9c39e)]:
|
|
129
|
+
- @baseplate-dev/sync@0.5.0
|
|
130
|
+
- @baseplate-dev/utils@0.5.0
|
|
131
|
+
|
|
132
|
+
## 0.4.4
|
|
133
|
+
|
|
134
|
+
### Patch Changes
|
|
135
|
+
|
|
136
|
+
- Updated dependencies []:
|
|
137
|
+
- @baseplate-dev/sync@0.4.4
|
|
138
|
+
- @baseplate-dev/utils@0.4.4
|
|
139
|
+
|
|
140
|
+
## 0.4.3
|
|
141
|
+
|
|
142
|
+
### Patch Changes
|
|
143
|
+
|
|
144
|
+
- [#717](https://github.com/halfdomelabs/baseplate/pull/717) [`83e4e7f`](https://github.com/halfdomelabs/baseplate/commit/83e4e7f60adf67480cebb4ff419c015ff282010d) Thanks [@kingston](https://github.com/kingston)! - Add support for generating vitest on web apps
|
|
145
|
+
|
|
146
|
+
- [#722](https://github.com/halfdomelabs/baseplate/pull/722) [`8622c4e`](https://github.com/halfdomelabs/baseplate/commit/8622c4e2b91788ad4a368c9f06f82a17ee1a29ed) Thanks [@kingston](https://github.com/kingston)! - Add support for generating files in package.json
|
|
147
|
+
|
|
148
|
+
- Updated dependencies []:
|
|
149
|
+
- @baseplate-dev/sync@0.4.3
|
|
150
|
+
- @baseplate-dev/utils@0.4.3
|
|
151
|
+
|
|
152
|
+
## 0.4.2
|
|
153
|
+
|
|
154
|
+
### Patch Changes
|
|
155
|
+
|
|
156
|
+
- [#701](https://github.com/halfdomelabs/baseplate/pull/701) [`e8576b9`](https://github.com/halfdomelabs/baseplate/commit/e8576b9ba5912acf9d81bcc1b18a0fbc8df91220) Thanks [@kingston](https://github.com/kingston)! - Upgrade to Zod v4
|
|
157
|
+
|
|
158
|
+
- [#697](https://github.com/halfdomelabs/baseplate/pull/697) [`11fa86f`](https://github.com/halfdomelabs/baseplate/commit/11fa86fb8e7a209175f132b1b3d59cd24cf13d54) Thanks [@kingston](https://github.com/kingston)! - Ignore \*.map files from built output in package.json
|
|
159
|
+
|
|
160
|
+
- [#713](https://github.com/halfdomelabs/baseplate/pull/713) [`74529e7`](https://github.com/halfdomelabs/baseplate/commit/74529e7fffae8a70f8cfe801a1897204d010e291) Thanks [@kingston](https://github.com/kingston)! - Migrate Vitest global setup from single merged file to individual files per generator
|
|
161
|
+
- Replace `globalSetupOperations` Map with `globalSetupFiles` array in vitest config provider
|
|
162
|
+
- Vitest generator now always renders `global-setup-env.ts` for environment loading
|
|
163
|
+
- Each generator (Redis, Prisma) now creates its own global setup file
|
|
164
|
+
- Vitest config outputs `globalSetup` as an array with env file first, then sorted additional files
|
|
165
|
+
|
|
166
|
+
- [#694](https://github.com/halfdomelabs/baseplate/pull/694) [`4be6c7d`](https://github.com/halfdomelabs/baseplate/commit/4be6c7dc7d900c37585b93cf5bb7198de6a41f1f) Thanks [@kingston](https://github.com/kingston)! - Add test:affected command to monorepo
|
|
167
|
+
|
|
168
|
+
- Updated dependencies [[`795ee4c`](https://github.com/halfdomelabs/baseplate/commit/795ee4c18e7b393fb9247ced23a12de5e219ab15), [`11fa86f`](https://github.com/halfdomelabs/baseplate/commit/11fa86fb8e7a209175f132b1b3d59cd24cf13d54), [`4be6c7d`](https://github.com/halfdomelabs/baseplate/commit/4be6c7dc7d900c37585b93cf5bb7198de6a41f1f)]:
|
|
169
|
+
- @baseplate-dev/sync@0.4.2
|
|
170
|
+
- @baseplate-dev/utils@0.4.2
|
|
171
|
+
|
|
172
|
+
## 0.4.1
|
|
173
|
+
|
|
174
|
+
### Patch Changes
|
|
175
|
+
|
|
176
|
+
- Updated dependencies []:
|
|
177
|
+
- @baseplate-dev/sync@0.4.1
|
|
178
|
+
- @baseplate-dev/utils@0.4.1
|
|
179
|
+
|
|
180
|
+
## 0.4.0
|
|
181
|
+
|
|
182
|
+
### Patch Changes
|
|
183
|
+
|
|
184
|
+
- [#692](https://github.com/halfdomelabs/baseplate/pull/692) [`c3c2a00`](https://github.com/halfdomelabs/baseplate/commit/c3c2a001d57a21f76e064af55941a43bedf26f18) Thanks [@kingston](https://github.com/kingston)! - Set maxWorkers to 1 to allow for integration tests to work properly. Note: This is a temporary solution until we implement parallel db tests.
|
|
185
|
+
|
|
186
|
+
- [#677](https://github.com/halfdomelabs/baseplate/pull/677) [`6daff18`](https://github.com/halfdomelabs/baseplate/commit/6daff18a033d2d78746984edebba4d8c6fe957a5) Thanks [@kingston](https://github.com/kingston)! - Fix improper name for declaration() and typeDeclaration() when name is default
|
|
187
|
+
|
|
188
|
+
- Updated dependencies [[`839cbdf`](https://github.com/halfdomelabs/baseplate/commit/839cbdfc6ddc059aa86d24bf6ec5d8e95cce9042), [`c3c2a00`](https://github.com/halfdomelabs/baseplate/commit/c3c2a001d57a21f76e064af55941a43bedf26f18)]:
|
|
189
|
+
- @baseplate-dev/sync@0.4.0
|
|
190
|
+
- @baseplate-dev/utils@0.4.0
|
|
191
|
+
|
|
192
|
+
## 0.3.8
|
|
193
|
+
|
|
194
|
+
### Patch Changes
|
|
195
|
+
|
|
196
|
+
- Updated dependencies []:
|
|
197
|
+
- @baseplate-dev/sync@0.3.8
|
|
198
|
+
- @baseplate-dev/utils@0.3.8
|
|
199
|
+
|
|
200
|
+
## 0.3.7
|
|
201
|
+
|
|
202
|
+
### Patch Changes
|
|
203
|
+
|
|
204
|
+
- [#666](https://github.com/halfdomelabs/baseplate/pull/666) [`9508a8e`](https://github.com/halfdomelabs/baseplate/commit/9508a8ee75e33ea0c0632f3f5ef5621b020f530d) Thanks [@kingston](https://github.com/kingston)! - Add node/browser globals to the eslint configuration with 'globals' package dependency
|
|
205
|
+
|
|
206
|
+
- Updated dependencies []:
|
|
207
|
+
- @baseplate-dev/sync@0.3.7
|
|
208
|
+
- @baseplate-dev/utils@0.3.7
|
|
209
|
+
|
|
210
|
+
## 0.3.6
|
|
211
|
+
|
|
212
|
+
### Patch Changes
|
|
213
|
+
|
|
214
|
+
- [#663](https://github.com/halfdomelabs/baseplate/pull/663) [`1186a21`](https://github.com/halfdomelabs/baseplate/commit/1186a21df267d112a84a42ff1d3c87b495452ce0) Thanks [@kingston](https://github.com/kingston)! - Upgrade axios to 1.12.0
|
|
215
|
+
- axios: 1.8.3 → 1.12.0
|
|
216
|
+
|
|
217
|
+
This upgrade brings the latest axios features and security improvements for generated projects that use axios functionality.
|
|
218
|
+
|
|
219
|
+
- Updated dependencies []:
|
|
220
|
+
- @baseplate-dev/sync@0.3.6
|
|
221
|
+
- @baseplate-dev/utils@0.3.6
|
|
222
|
+
|
|
223
|
+
## 0.3.5
|
|
224
|
+
|
|
225
|
+
### Patch Changes
|
|
226
|
+
|
|
227
|
+
- Updated dependencies []:
|
|
228
|
+
- @baseplate-dev/sync@0.3.5
|
|
229
|
+
- @baseplate-dev/utils@0.3.5
|
|
230
|
+
|
|
231
|
+
## 0.3.4
|
|
232
|
+
|
|
233
|
+
### Patch Changes
|
|
234
|
+
|
|
235
|
+
- [#643](https://github.com/halfdomelabs/baseplate/pull/643) [`7d9e6d0`](https://github.com/halfdomelabs/baseplate/commit/7d9e6d01e0a9920cee4c4d499beeffc1c663494a) Thanks [@kingston](https://github.com/kingston)! - Upgrade to TypeScript 5.8 with erasable syntax only mode
|
|
236
|
+
|
|
237
|
+
This upgrade modernizes the codebase with TypeScript 5.8, enables erasable syntax only mode for better performance, and updates runtime dependencies.
|
|
238
|
+
|
|
239
|
+
**Key Changes:**
|
|
240
|
+
- Upgraded TypeScript to version 5.8
|
|
241
|
+
- Enabled `erasableSyntaxOnly` compiler option for improved build performance
|
|
242
|
+
- Updated Node.js requirement to 22.18
|
|
243
|
+
- Updated PNPM requirement to 10.15
|
|
244
|
+
- Fixed parameter property syntax to be compatible with erasable syntax only mode
|
|
245
|
+
|
|
246
|
+
- Updated dependencies [[`67dba69`](https://github.com/halfdomelabs/baseplate/commit/67dba697439e6bc76b81522c133d920af4dbdbb1), [`7d9e6d0`](https://github.com/halfdomelabs/baseplate/commit/7d9e6d01e0a9920cee4c4d499beeffc1c663494a)]:
|
|
247
|
+
- @baseplate-dev/sync@0.3.4
|
|
248
|
+
- @baseplate-dev/utils@0.3.4
|
|
249
|
+
|
|
250
|
+
## 0.3.3
|
|
251
|
+
|
|
252
|
+
### Patch Changes
|
|
253
|
+
|
|
254
|
+
- Updated dependencies []:
|
|
255
|
+
- @baseplate-dev/sync@0.3.3
|
|
256
|
+
- @baseplate-dev/utils@0.3.3
|
|
257
|
+
|
|
258
|
+
## 0.3.2
|
|
259
|
+
|
|
260
|
+
### Patch Changes
|
|
261
|
+
|
|
262
|
+
- [#631](https://github.com/halfdomelabs/baseplate/pull/631) [`b4c15b9`](https://github.com/halfdomelabs/baseplate/commit/b4c15b98a518c53828f81624764ba693def85faf) Thanks [@kingston](https://github.com/kingston)! - Add template replacements support for TypeScript templates to enable dynamic value substitution in generated code
|
|
263
|
+
|
|
264
|
+
- Updated dependencies []:
|
|
265
|
+
- @baseplate-dev/sync@0.3.2
|
|
266
|
+
- @baseplate-dev/utils@0.3.2
|
|
267
|
+
|
|
268
|
+
## 0.3.1
|
|
269
|
+
|
|
270
|
+
### Patch Changes
|
|
271
|
+
|
|
272
|
+
- [#629](https://github.com/halfdomelabs/baseplate/pull/629) [`d79b0cf`](https://github.com/halfdomelabs/baseplate/commit/d79b0cfb9061dbeccc976a2f018b264849bef788) Thanks [@kingston](https://github.com/kingston)! - Add queue plugin with pg-boss implementation
|
|
273
|
+
|
|
274
|
+
Introduces a new queue plugin that provides background job processing capabilities for Baseplate projects. The initial implementation uses pg-boss as the queue backend, providing:
|
|
275
|
+
- **Queue Plugin Architecture**: Modular queue system with provider-based implementation pattern
|
|
276
|
+
- **pg-boss Integration**: PostgreSQL-based queue system with robust job processing features
|
|
277
|
+
- **Type-Safe Queue Definitions**: Full TypeScript support for queue job payloads and handlers
|
|
278
|
+
- **Job Management Features**:
|
|
279
|
+
- Delayed job execution
|
|
280
|
+
- Retry logic with configurable backoff strategies (fixed or exponential)
|
|
281
|
+
- Priority-based job processing
|
|
282
|
+
- Repeatable/cron jobs with schedule patterns
|
|
283
|
+
- **Worker Script Generation**: Automatic generation of worker scripts for processing background jobs
|
|
284
|
+
- **Queue Registry Pattern**: Centralized queue management with automatic discovery
|
|
285
|
+
- **Maintenance Operations**: Configurable job retention and cleanup policies
|
|
286
|
+
- **Graceful Shutdown**: Proper cleanup and job completion on worker termination
|
|
287
|
+
|
|
288
|
+
The plugin follows Baseplate's spec-implementation pattern, allowing for future queue backends while maintaining a consistent API.
|
|
289
|
+
|
|
290
|
+
- Updated dependencies []:
|
|
291
|
+
- @baseplate-dev/sync@0.3.1
|
|
292
|
+
- @baseplate-dev/utils@0.3.1
|
|
293
|
+
|
|
294
|
+
## 0.3.0
|
|
295
|
+
|
|
296
|
+
### Patch Changes
|
|
297
|
+
|
|
298
|
+
- [#626](https://github.com/halfdomelabs/baseplate/pull/626) [`8ec33fc`](https://github.com/halfdomelabs/baseplate/commit/8ec33fcdc8fea9cb20e79586b854bf075270ab53) Thanks [@kingston](https://github.com/kingston)! - Remove dotenv references and replace with native node --env-file option
|
|
299
|
+
|
|
300
|
+
- [#621](https://github.com/halfdomelabs/baseplate/pull/621) [`fbde70f`](https://github.com/halfdomelabs/baseplate/commit/fbde70ffbcae025318480e9607924978847fba2b) Thanks [@kingston](https://github.com/kingston)! - Update package versions to match latest dependencies from main repo
|
|
301
|
+
- Update ESLint and related plugins to latest versions
|
|
302
|
+
- Update TypeScript ESLint to 8.38.0
|
|
303
|
+
- Update Prettier plugins to latest versions
|
|
304
|
+
- Update Tailwind CSS Prettier plugin to 0.6.14
|
|
305
|
+
|
|
306
|
+
- Updated dependencies [[`687a47e`](https://github.com/halfdomelabs/baseplate/commit/687a47e5e39abc5138ba3fc2d0db9cfee6e4dbfe)]:
|
|
307
|
+
- @baseplate-dev/sync@0.3.0
|
|
308
|
+
- @baseplate-dev/utils@0.3.0
|
|
309
|
+
|
|
310
|
+
## 0.2.6
|
|
311
|
+
|
|
312
|
+
### Patch Changes
|
|
313
|
+
|
|
314
|
+
- Updated dependencies []:
|
|
315
|
+
- @baseplate-dev/sync@0.2.6
|
|
316
|
+
- @baseplate-dev/utils@0.2.6
|
|
317
|
+
|
|
318
|
+
## 0.2.5
|
|
319
|
+
|
|
320
|
+
### Patch Changes
|
|
321
|
+
|
|
322
|
+
- [#613](https://github.com/halfdomelabs/baseplate/pull/613) [`2aae451`](https://github.com/halfdomelabs/baseplate/commit/2aae45107cb6331234d14d8a6491b55e7f6d9f33) Thanks [@kingston](https://github.com/kingston)! - Add $templateName syntax for intra-generator template references
|
|
323
|
+
|
|
324
|
+
Templates can now reference other templates within the same generator using the `$templateName` syntax. This enables templates to access file paths of other templates in the same generator during generation.
|
|
325
|
+
|
|
326
|
+
Key features:
|
|
327
|
+
- Use `$templateName` in template files to reference other generator templates
|
|
328
|
+
- Kebab-case template names are automatically converted to camelCase (e.g., `session-constants` → `sessionConstants`)
|
|
329
|
+
- Configure referenced templates using the `referencedGeneratorTemplates` field in extractor.json
|
|
330
|
+
- Works seamlessly with existing variable replacement and import maps
|
|
331
|
+
- Provides clear error messages for missing template references
|
|
332
|
+
|
|
333
|
+
Example usage:
|
|
334
|
+
|
|
335
|
+
```typescript
|
|
336
|
+
// In template file
|
|
337
|
+
import { Constants } from '$sessionConstants';
|
|
338
|
+
import { Utils } from '$authUtils';
|
|
339
|
+
|
|
340
|
+
// In extractor.json
|
|
341
|
+
{
|
|
342
|
+
"user-service": {
|
|
343
|
+
"sourceFile": "services/user.service.ts",
|
|
344
|
+
"referencedGeneratorTemplates": ["session-constants", "auth-utils"]
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
This feature is designed for intra-generator template references only. For cross-generator references, continue using import map providers.
|
|
350
|
+
|
|
351
|
+
- Updated dependencies [[`e0d690c`](https://github.com/halfdomelabs/baseplate/commit/e0d690c1e139f93a8ff60c9e0c90bc72cdf705a4)]:
|
|
352
|
+
- @baseplate-dev/sync@0.2.5
|
|
353
|
+
- @baseplate-dev/utils@0.2.5
|
|
354
|
+
|
|
355
|
+
## 0.2.4
|
|
356
|
+
|
|
357
|
+
### Patch Changes
|
|
358
|
+
|
|
359
|
+
- Updated dependencies [[`ffe791f`](https://github.com/halfdomelabs/baseplate/commit/ffe791f6ab44e82c8481f3a18df9262dec71cff6)]:
|
|
360
|
+
- @baseplate-dev/utils@0.2.4
|
|
361
|
+
- @baseplate-dev/sync@0.2.4
|
|
362
|
+
|
|
363
|
+
## 0.2.3
|
|
364
|
+
|
|
365
|
+
### Patch Changes
|
|
366
|
+
|
|
367
|
+
- [#601](https://github.com/halfdomelabs/baseplate/pull/601) [`f3bd169`](https://github.com/halfdomelabs/baseplate/commit/f3bd169b8debc52628179ca6ebd93c20b8a6f841) Thanks [@kingston](https://github.com/kingston)! - Add template renderers for text and raw templates
|
|
368
|
+
|
|
369
|
+
This adds corresponding template renderers for text and raw templates, following the same pattern as TypeScript template renderers. The new renderers provide consistent APIs for generating template rendering functions that can be used in generator code.
|
|
370
|
+
|
|
371
|
+
Key features:
|
|
372
|
+
- Text template renderers support both individual templates and template groups
|
|
373
|
+
- Raw template renderers support individual templates (no groups needed)
|
|
374
|
+
- Full TypeScript type safety with proper action input types
|
|
375
|
+
- Integration with the template renderers plugin system
|
|
376
|
+
- Consistent API design across all template types (TypeScript, text, raw)
|
|
377
|
+
|
|
378
|
+
The renderers are automatically integrated with their respective file extractors and will be available for use in generated code.
|
|
379
|
+
|
|
380
|
+
- [#602](https://github.com/halfdomelabs/baseplate/pull/602) [`f0cb763`](https://github.com/halfdomelabs/baseplate/commit/f0cb7632f04bfb487722785fac7218d76d3b7e3b) Thanks [@kingston](https://github.com/kingston)! - Improve Docker Compose generation with security, resource management, and developer experience enhancements
|
|
381
|
+
|
|
382
|
+
## Version Upgrades
|
|
383
|
+
- Upgrade PostgreSQL from 16.2 to 17.5-alpine
|
|
384
|
+
- Upgrade Redis from 7.2.4 to 8.0-alpine
|
|
385
|
+
- For existing projects, follow the upgrade guide at https://docs.baseplate.dev/guides/upgrading-postgres/
|
|
386
|
+
|
|
387
|
+
## Security Improvements
|
|
388
|
+
- Use environment variables for all sensitive data (passwords, usernames)
|
|
389
|
+
- Add `security_opt: no-new-privileges:true` to prevent privilege escalation
|
|
390
|
+
- Fix Redis healthcheck to include authentication
|
|
391
|
+
|
|
392
|
+
## Networking
|
|
393
|
+
- Create custom bridge network for better isolation
|
|
394
|
+
- All services communicate over internal network
|
|
395
|
+
|
|
396
|
+
## Database Configuration
|
|
397
|
+
- Add PostgreSQL environment variables: `POSTGRES_DB`, `POSTGRES_INITDB_ARGS`
|
|
398
|
+
- Use default `postgres` user for simplicity in local development
|
|
399
|
+
- Add container names for easier management
|
|
400
|
+
- Improve volume configuration
|
|
401
|
+
|
|
402
|
+
## Redis Configuration
|
|
403
|
+
- Add Redis memory limits (256MB) and eviction policy (no-eviction for BullMQ)
|
|
404
|
+
- Configure maxmemory and maxmemory-policy
|
|
405
|
+
|
|
406
|
+
## Developer Experience
|
|
407
|
+
- Add logging configuration to prevent disk filling (10MB max, 3 files)
|
|
408
|
+
- Generate `.env.example` file with all available variables
|
|
409
|
+
- Improve health checks with start periods
|
|
410
|
+
- Better default values using project name
|
|
411
|
+
- Fix interface bug in redis.ts (PostgresConfig → RedisConfig)
|
|
412
|
+
|
|
413
|
+
## Breaking Changes
|
|
414
|
+
- PostgreSQL generator now requires additional config parameters (database, projectName)
|
|
415
|
+
- Redis generator now requires projectName parameter
|
|
416
|
+
- Generated Docker Compose files now use custom bridge network
|
|
417
|
+
|
|
418
|
+
- [#596](https://github.com/halfdomelabs/baseplate/pull/596) [`059edf7`](https://github.com/halfdomelabs/baseplate/commit/059edf771755f1ff846494f238d777a9d1f7f5d7) Thanks [@kingston](https://github.com/kingston)! - Simplify template metadata system by consolidating template definitions in extractor.json
|
|
419
|
+
- Consolidate template definitions in extractor.json using template names as keys instead of file paths
|
|
420
|
+
- Rename .template-metadata.json to .templates-info.json with simplified instance tracking
|
|
421
|
+
- Remove file-id-map.json dependency and related file ID mapping logic
|
|
422
|
+
- Update TemplateExtractorConfigLookup to work without file ID mapping
|
|
423
|
+
- Update all template extractors and tests to use new metadata format
|
|
424
|
+
- Add migration script to convert existing extractor.json files to new format
|
|
425
|
+
|
|
426
|
+
- Updated dependencies [[`a506e88`](https://github.com/halfdomelabs/baseplate/commit/a506e88893bf395916ef3fbf6dd9dd7c0ff17acb), [`059edf7`](https://github.com/halfdomelabs/baseplate/commit/059edf771755f1ff846494f238d777a9d1f7f5d7), [`059edf7`](https://github.com/halfdomelabs/baseplate/commit/059edf771755f1ff846494f238d777a9d1f7f5d7), [`de9e1b4`](https://github.com/halfdomelabs/baseplate/commit/de9e1b4f3a8a7dcf6b962781a0aa589eb970c7a8)]:
|
|
427
|
+
- @baseplate-dev/sync@0.2.3
|
|
428
|
+
- @baseplate-dev/utils@0.2.3
|
|
429
|
+
|
|
430
|
+
## 0.2.2
|
|
431
|
+
|
|
432
|
+
### Patch Changes
|
|
433
|
+
|
|
434
|
+
- [#589](https://github.com/halfdomelabs/baseplate/pull/589) [`dce88ac`](https://github.com/halfdomelabs/baseplate/commit/dce88ac8d1f951f7336c12c5e004107de3a23e97) Thanks [@kingston](https://github.com/kingston)! - Add Template Renderers plugin for auto-generated simplified template rendering APIs
|
|
435
|
+
|
|
436
|
+
This new plugin reduces template rendering boilerplate by 70-80% by automatically generating pre-configured rendering functions. It follows the same architectural pattern as the typed templates system, with a TypeScript-specific renderer function (`renderTsTemplateRenderers`) that generates generic definitions consumed by the plugin.
|
|
437
|
+
|
|
438
|
+
**Key Features:**
|
|
439
|
+
- **Simplified API**: Reduces complex `renderTemplate`/`renderTemplateGroup` calls to simple `renderers.templateName.render()` calls
|
|
440
|
+
- **Automatic Dependency Resolution**: Import map providers and task dependencies are automatically resolved
|
|
441
|
+
- **Type Safety**: Generated interfaces provide full TypeScript type safety
|
|
442
|
+
- **Generic Architecture**: Extensible to support future template types (text, raw, etc.)
|
|
443
|
+
- **Backward Compatibility**: Existing generators continue working unchanged
|
|
444
|
+
|
|
445
|
+
**Before:**
|
|
446
|
+
|
|
447
|
+
```typescript
|
|
448
|
+
await builder.apply(
|
|
449
|
+
typescriptFile.renderTemplateGroup({
|
|
450
|
+
group: templates.hooksGroup,
|
|
451
|
+
paths,
|
|
452
|
+
variables: { useCurrentUser: { TPL_USER: userQueryName } },
|
|
453
|
+
importMapProviders: { generatedGraphqlImports, reactErrorImports },
|
|
454
|
+
}),
|
|
455
|
+
);
|
|
456
|
+
```
|
|
457
|
+
|
|
458
|
+
**After:**
|
|
459
|
+
|
|
460
|
+
```typescript
|
|
461
|
+
await builder.apply(
|
|
462
|
+
renderers.hooksGroup.render({
|
|
463
|
+
variables: { useCurrentUser: { TPL_USER: userQueryName } },
|
|
464
|
+
}),
|
|
465
|
+
);
|
|
466
|
+
```
|
|
467
|
+
|
|
468
|
+
The plugin automatically generates TypeScript interfaces, tasks with resolved dependencies, and exports that integrate seamlessly with the existing generator system.
|
|
469
|
+
|
|
470
|
+
- Updated dependencies [[`f8c9284`](https://github.com/halfdomelabs/baseplate/commit/f8c9284752c12c6aab70481bf98e6fa402e61075), [`f8c9284`](https://github.com/halfdomelabs/baseplate/commit/f8c9284752c12c6aab70481bf98e6fa402e61075)]:
|
|
471
|
+
- @baseplate-dev/utils@0.2.2
|
|
472
|
+
- @baseplate-dev/sync@0.2.2
|
|
473
|
+
|
|
474
|
+
## 0.2.1
|
|
475
|
+
|
|
476
|
+
### Patch Changes
|
|
477
|
+
|
|
478
|
+
- [#581](https://github.com/halfdomelabs/baseplate/pull/581) [`d7d9985`](https://github.com/halfdomelabs/baseplate/commit/d7d998540ca5886259f93b5020c4d8939c5cdf5f) Thanks [@kingston](https://github.com/kingston)! - Fix settings for prettier with Tailwind v4
|
|
479
|
+
|
|
480
|
+
- Updated dependencies []:
|
|
481
|
+
- @baseplate-dev/sync@0.2.1
|
|
482
|
+
- @baseplate-dev/utils@0.2.1
|
|
483
|
+
|
|
484
|
+
## 0.2.0
|
|
485
|
+
|
|
486
|
+
### Patch Changes
|
|
487
|
+
|
|
488
|
+
- [#568](https://github.com/halfdomelabs/baseplate/pull/568) [`06b4faf`](https://github.com/halfdomelabs/baseplate/commit/06b4fafaf3d2ed848d959a9911b9bfa26702d4a3) Thanks [@kingston](https://github.com/kingston)! - Enable the import-x/consistent-type-specifier-style rule to clean up type imports
|
|
489
|
+
|
|
490
|
+
- [#574](https://github.com/halfdomelabs/baseplate/pull/574) [`f5d7a6f`](https://github.com/halfdomelabs/baseplate/commit/f5d7a6f781b1799bb8ad197973e5cec04f869264) Thanks [@kingston](https://github.com/kingston)! - Refactored naming of project paths to output paths to be clearer about their meaning
|
|
491
|
+
|
|
492
|
+
- [#570](https://github.com/halfdomelabs/baseplate/pull/570) [`56a3a89`](https://github.com/halfdomelabs/baseplate/commit/56a3a8944b9a557cca0484d78851fca10122e5f9) Thanks [@kingston](https://github.com/kingston)! - Implement phase 1 of reverse template generator v2
|
|
493
|
+
|
|
494
|
+
- Updated dependencies [[`06b4faf`](https://github.com/halfdomelabs/baseplate/commit/06b4fafaf3d2ed848d959a9911b9bfa26702d4a3), [`f5d7a6f`](https://github.com/halfdomelabs/baseplate/commit/f5d7a6f781b1799bb8ad197973e5cec04f869264), [`fd63554`](https://github.com/halfdomelabs/baseplate/commit/fd635544eb6df0385501f61f3e51bce554633458), [`a94eed9`](https://github.com/halfdomelabs/baseplate/commit/a94eed9c12236c5fb772d998b9c34ca876c10c13), [`56a3a89`](https://github.com/halfdomelabs/baseplate/commit/56a3a8944b9a557cca0484d78851fca10122e5f9), [`a94eed9`](https://github.com/halfdomelabs/baseplate/commit/a94eed9c12236c5fb772d998b9c34ca876c10c13), [`56a3a89`](https://github.com/halfdomelabs/baseplate/commit/56a3a8944b9a557cca0484d78851fca10122e5f9)]:
|
|
495
|
+
- @baseplate-dev/utils@0.2.0
|
|
496
|
+
- @baseplate-dev/sync@0.2.0
|
|
497
|
+
|
|
498
|
+
## 0.1.3
|
|
499
|
+
|
|
500
|
+
### Patch Changes
|
|
501
|
+
|
|
502
|
+
- [#562](https://github.com/halfdomelabs/baseplate/pull/562) [`30fdf49`](https://github.com/halfdomelabs/baseplate/commit/30fdf4988de244c30d13c93b7761587d4c1413ad) Thanks [@kingston](https://github.com/kingston)! - Switch to Typescript project references for building/watching project
|
|
503
|
+
|
|
504
|
+
- Updated dependencies [[`30fdf49`](https://github.com/halfdomelabs/baseplate/commit/30fdf4988de244c30d13c93b7761587d4c1413ad)]:
|
|
505
|
+
- @baseplate-dev/utils@0.1.3
|
|
506
|
+
- @baseplate-dev/sync@0.1.3
|
|
507
|
+
|
|
508
|
+
## 0.1.2
|
|
509
|
+
|
|
510
|
+
### Patch Changes
|
|
511
|
+
|
|
512
|
+
- [#560](https://github.com/halfdomelabs/baseplate/pull/560) [`7e38ae9`](https://github.com/halfdomelabs/baseplate/commit/7e38ae9102c7c8ea958d2dab94e76be848d1c1a8) Thanks [@kingston](https://github.com/kingston)! - Add README files to all packages and plugins explaining their purpose within the Baseplate monorepo.
|
|
513
|
+
|
|
514
|
+
- Updated dependencies [[`7e38ae9`](https://github.com/halfdomelabs/baseplate/commit/7e38ae9102c7c8ea958d2dab94e76be848d1c1a8)]:
|
|
515
|
+
- @baseplate-dev/sync@0.1.2
|
|
516
|
+
- @baseplate-dev/utils@0.1.2
|
|
517
|
+
|
|
518
|
+
## 0.1.1
|
|
519
|
+
|
|
520
|
+
### Patch Changes
|
|
521
|
+
|
|
522
|
+
- [#559](https://github.com/halfdomelabs/baseplate/pull/559) [`17dd71e`](https://github.com/halfdomelabs/baseplate/commit/17dd71e3b9f83e3359eb007f8eab1c4792bdbb8b) Thanks [@kingston](https://github.com/kingston)! - Rename workspace to @baseplate-dev/\* and reset versions to 0.1.0
|
|
523
|
+
|
|
524
|
+
- [#557](https://github.com/halfdomelabs/baseplate/pull/557) [`9caaa0a`](https://github.com/halfdomelabs/baseplate/commit/9caaa0aed05677a75fed79601dcfd24ec85ab5ad) Thanks [@kingston](https://github.com/kingston)! - Update LICENSE to modified MPL-2.0 license
|
|
525
|
+
|
|
526
|
+
- Updated dependencies [[`17dd71e`](https://github.com/halfdomelabs/baseplate/commit/17dd71e3b9f83e3359eb007f8eab1c4792bdbb8b), [`9caaa0a`](https://github.com/halfdomelabs/baseplate/commit/9caaa0aed05677a75fed79601dcfd24ec85ab5ad)]:
|
|
527
|
+
- @baseplate-dev/utils@0.1.1
|
|
528
|
+
- @baseplate-dev/sync@0.1.1
|
|
@@ -1,24 +1,26 @@
|
|
|
1
1
|
export declare const CORE_PACKAGES: {
|
|
2
|
-
readonly typescript: "5.
|
|
3
|
-
readonly '@eslint/js': "9.
|
|
4
|
-
readonly '@vitest/eslint-plugin': "1.6.
|
|
5
|
-
readonly eslint: "9.
|
|
2
|
+
readonly typescript: "5.9.3";
|
|
3
|
+
readonly '@eslint/js': "9.39.2";
|
|
4
|
+
readonly '@vitest/eslint-plugin': "1.6.9";
|
|
5
|
+
readonly eslint: "9.39.2";
|
|
6
6
|
readonly 'eslint-config-prettier': "10.1.8";
|
|
7
7
|
readonly 'eslint-import-resolver-typescript': "4.4.4";
|
|
8
|
+
readonly 'eslint-plugin-better-tailwindcss': "4.2.0";
|
|
8
9
|
readonly 'eslint-plugin-import-x': "4.16.1";
|
|
9
10
|
readonly 'eslint-plugin-jsx-a11y': "6.10.2";
|
|
10
|
-
readonly 'eslint-plugin-perfectionist': "4.
|
|
11
|
+
readonly 'eslint-plugin-perfectionist': "5.4.0";
|
|
11
12
|
readonly 'eslint-plugin-react': "7.37.5";
|
|
12
|
-
readonly 'eslint-plugin-react-hooks': "
|
|
13
|
-
readonly 'eslint-plugin-unicorn': "
|
|
14
|
-
readonly 'typescript-eslint': "8.
|
|
15
|
-
readonly globals: "
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
13
|
+
readonly 'eslint-plugin-react-hooks': "7.0.1";
|
|
14
|
+
readonly 'eslint-plugin-unicorn': "62.0.0";
|
|
15
|
+
readonly 'typescript-eslint': "8.54.0";
|
|
16
|
+
readonly globals: "17.3.0";
|
|
17
|
+
readonly tailwindcss: "4.1.18";
|
|
18
|
+
readonly prettier: "3.8.1";
|
|
19
|
+
readonly 'prettier-plugin-packagejson': "3.0.0";
|
|
18
20
|
readonly vite: "7.1.12";
|
|
19
21
|
readonly vitest: "4.0.16";
|
|
20
22
|
readonly 'vite-tsconfig-paths': "5.1.4";
|
|
21
|
-
readonly axios: "1.
|
|
23
|
+
readonly axios: "1.13.5";
|
|
22
24
|
readonly turbo: "2.5.0";
|
|
23
25
|
};
|
|
24
26
|
//# sourceMappingURL=core-packages.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core-packages.d.ts","sourceRoot":"","sources":["../../src/constants/core-packages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"core-packages.d.ts","sourceRoot":"","sources":["../../src/constants/core-packages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;CAmChB,CAAC"}
|
|
@@ -1,29 +1,31 @@
|
|
|
1
1
|
export const CORE_PACKAGES = {
|
|
2
2
|
// Typescript
|
|
3
|
-
typescript: '5.
|
|
3
|
+
typescript: '5.9.3',
|
|
4
4
|
// Linting
|
|
5
|
-
'@eslint/js': '9.
|
|
6
|
-
'@vitest/eslint-plugin': '1.6.
|
|
7
|
-
eslint: '9.
|
|
5
|
+
'@eslint/js': '9.39.2',
|
|
6
|
+
'@vitest/eslint-plugin': '1.6.9',
|
|
7
|
+
eslint: '9.39.2',
|
|
8
8
|
'eslint-config-prettier': '10.1.8',
|
|
9
9
|
'eslint-import-resolver-typescript': '4.4.4',
|
|
10
|
+
'eslint-plugin-better-tailwindcss': '4.2.0',
|
|
10
11
|
'eslint-plugin-import-x': '4.16.1',
|
|
11
12
|
'eslint-plugin-jsx-a11y': '6.10.2',
|
|
12
|
-
'eslint-plugin-perfectionist': '4.
|
|
13
|
+
'eslint-plugin-perfectionist': '5.4.0',
|
|
13
14
|
'eslint-plugin-react': '7.37.5',
|
|
14
|
-
'eslint-plugin-react-hooks': '
|
|
15
|
-
'eslint-plugin-unicorn': '
|
|
16
|
-
'typescript-eslint': '8.
|
|
17
|
-
globals: '
|
|
15
|
+
'eslint-plugin-react-hooks': '7.0.1',
|
|
16
|
+
'eslint-plugin-unicorn': '62.0.0',
|
|
17
|
+
'typescript-eslint': '8.54.0',
|
|
18
|
+
globals: '17.3.0',
|
|
19
|
+
tailwindcss: '4.1.18',
|
|
18
20
|
// Formatting
|
|
19
|
-
prettier: '3.
|
|
20
|
-
'prettier-plugin-packagejson': '
|
|
21
|
+
prettier: '3.8.1',
|
|
22
|
+
'prettier-plugin-packagejson': '3.0.0',
|
|
21
23
|
// Testing
|
|
22
24
|
vite: '7.1.12',
|
|
23
25
|
vitest: '4.0.16',
|
|
24
26
|
'vite-tsconfig-paths': '5.1.4',
|
|
25
27
|
// Utils
|
|
26
|
-
axios: '1.
|
|
28
|
+
axios: '1.13.5',
|
|
27
29
|
// Monorepo
|
|
28
30
|
turbo: '2.5.0',
|
|
29
31
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core-packages.js","sourceRoot":"","sources":["../../src/constants/core-packages.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,aAAa;IACb,UAAU,EAAE,OAAO;IAEnB,UAAU;IACV,YAAY,EAAE,QAAQ;IACtB,uBAAuB,EAAE,OAAO;IAChC,MAAM,EAAE,QAAQ;IAChB,wBAAwB,EAAE,QAAQ;IAClC,mCAAmC,EAAE,OAAO;IAC5C,wBAAwB,EAAE,QAAQ;IAClC,wBAAwB,EAAE,QAAQ;IAClC,6BAA6B,EAAE,
|
|
1
|
+
{"version":3,"file":"core-packages.js","sourceRoot":"","sources":["../../src/constants/core-packages.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,aAAa;IACb,UAAU,EAAE,OAAO;IAEnB,UAAU;IACV,YAAY,EAAE,QAAQ;IACtB,uBAAuB,EAAE,OAAO;IAChC,MAAM,EAAE,QAAQ;IAChB,wBAAwB,EAAE,QAAQ;IAClC,mCAAmC,EAAE,OAAO;IAC5C,kCAAkC,EAAE,OAAO;IAC3C,wBAAwB,EAAE,QAAQ;IAClC,wBAAwB,EAAE,QAAQ;IAClC,6BAA6B,EAAE,OAAO;IACtC,qBAAqB,EAAE,QAAQ;IAC/B,2BAA2B,EAAE,OAAO;IACpC,uBAAuB,EAAE,QAAQ;IACjC,mBAAmB,EAAE,QAAQ;IAC7B,OAAO,EAAE,QAAQ;IACjB,WAAW,EAAE,QAAQ;IAErB,aAAa;IACb,QAAQ,EAAE,OAAO;IACjB,6BAA6B,EAAE,OAAO;IAEtC,UAAU;IACV,IAAI,EAAE,QAAQ;IACd,MAAM,EAAE,QAAQ;IAChB,qBAAqB,EAAE,OAAO;IAE9B,QAAQ;IACR,KAAK,EAAE,QAAQ;IAEf,WAAW;IACX,KAAK,EAAE,OAAO;CACN,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eslint.generator.d.ts","sourceRoot":"","sources":["../../../../src/generators/node/eslint/eslint.generator.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"eslint.generator.d.ts","sourceRoot":"","sources":["../../../../src/generators/node/eslint/eslint.generator.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAe9D,QAAA,MAAkB,oBAAoB;;;;;;;iBA6BnC,CAAC;AAEJ,OAAO,EAAE,oBAAoB,EAAE,CAAC;AAEhC,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyH1B,CAAC"}
|