@baseplate-dev/create-project 0.5.1 → 0.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +279 -0
  2. package/package.json +11 -11
package/CHANGELOG.md ADDED
@@ -0,0 +1,279 @@
1
+ # @baseplate-dev/create-project
2
+
3
+ ## 0.5.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`ef1354d`](https://github.com/halfdomelabs/baseplate/commit/ef1354da11e2c48a80af03f44834555ce63a2948), [`b4db947`](https://github.com/halfdomelabs/baseplate/commit/b4db947f256c4b8639d7f18ffb58bb2b1646c497), [`dd40bcd`](https://github.com/halfdomelabs/baseplate/commit/dd40bcd219c79f0cd7b66c0427c77deda0664072)]:
8
+ - @baseplate-dev/project-builder-server@0.5.2
9
+ - @baseplate-dev/project-builder-lib@0.5.2
10
+ - @baseplate-dev/project-builder-cli@0.5.2
11
+ - @baseplate-dev/sync@0.5.2
12
+ - @baseplate-dev/utils@0.5.2
13
+
14
+ ## 0.5.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [#737](https://github.com/halfdomelabs/baseplate/pull/737) [`55aa484`](https://github.com/halfdomelabs/baseplate/commit/55aa484621f2dc5b1195b6b537e7d6ad215bc499) Thanks [@kingston](https://github.com/kingston)! - Refactor plugin spec system with lazy initialization and clear setup/use phases
19
+
20
+ This refactoring overhauls the plugin spec system to introduce a two-phase architecture with lazy initialization:
21
+
22
+ **New Architecture:**
23
+ - **Setup phase (init)**: Plugins register their implementations during module initialization using mutable field containers
24
+ - **Use phase**: Consumers access registered items through a read-only interface, with lazy initialization on first access
25
+ - **FieldMap-based specs**: New `createFieldMapSpec` helper provides type-safe containers (maps, arrays, named arrays, scalars) with automatic source tracking
26
+
27
+ **Key changes:**
28
+ - Rename `PluginImplementationStore` to `PluginSpecStore` with cached `use()` instances
29
+ - Rename `createPlatformPluginExport` to `createPluginModule`
30
+ - Add required `name` field to all plugin modules for unique identification
31
+ - Convert all specs to use `createFieldMapSpec` with typed containers
32
+ - Update all plugin modules to use new registration methods (`.add()`, `.set()`, `.push()`)
33
+ - Introduce `ModuleContext` with `moduleKey` and `pluginKey` for better source tracking
34
+ - Specs now define both `init` (mutable setup interface) and `use` (read-only consumption interface)
35
+
36
+ - Updated dependencies [[`1debcb8`](https://github.com/halfdomelabs/baseplate/commit/1debcb89807fafdd7415a659f4bebbad0d69f072), [`55aa484`](https://github.com/halfdomelabs/baseplate/commit/55aa484621f2dc5b1195b6b537e7d6ad215bc499), [`2de5d5c`](https://github.com/halfdomelabs/baseplate/commit/2de5d5c43c5354571d50707a99b4028ff8792534)]:
37
+ - @baseplate-dev/project-builder-server@0.5.1
38
+ - @baseplate-dev/project-builder-lib@0.5.1
39
+ - @baseplate-dev/project-builder-cli@0.5.1
40
+ - @baseplate-dev/sync@0.5.1
41
+ - @baseplate-dev/utils@0.5.1
42
+
43
+ ## 0.5.0
44
+
45
+ ### Patch Changes
46
+
47
+ - [#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
48
+ - vitest: 3.2.4 → 4.0.16
49
+ - @vitest/eslint-plugin: 1.3.4 → 1.6.5
50
+
51
+ Breaking changes addressed:
52
+ - Updated `UserConfig` type to `ViteUserConfig` in vitest config files
53
+ - Fixed mock type annotations for vitest 4.0 compatibility
54
+
55
+ - Updated dependencies [[`97bd14e`](https://github.com/halfdomelabs/baseplate/commit/97bd14e381206b54e55c22264d1d406e83146146), [`c7d373e`](https://github.com/halfdomelabs/baseplate/commit/c7d373ebaaeda2522515fdaeae0d37d0cd9ce7fe), [`397018b`](https://github.com/halfdomelabs/baseplate/commit/397018b8c30949f75734369b58c67d7afcc424a9), [`8bfc742`](https://github.com/halfdomelabs/baseplate/commit/8bfc742b8a93393a5539babfd11b97a88ee9c39e)]:
56
+ - @baseplate-dev/project-builder-lib@0.5.0
57
+ - @baseplate-dev/project-builder-server@0.5.0
58
+ - @baseplate-dev/sync@0.5.0
59
+ - @baseplate-dev/project-builder-cli@0.5.0
60
+ - @baseplate-dev/utils@0.5.0
61
+
62
+ ## 0.4.4
63
+
64
+ ### Patch Changes
65
+
66
+ - Updated dependencies []:
67
+ - @baseplate-dev/project-builder-server@0.4.4
68
+ - @baseplate-dev/project-builder-cli@0.4.4
69
+ - @baseplate-dev/project-builder-lib@0.4.4
70
+ - @baseplate-dev/sync@0.4.4
71
+ - @baseplate-dev/utils@0.4.4
72
+
73
+ ## 0.4.3
74
+
75
+ ### Patch Changes
76
+
77
+ - [#715](https://github.com/halfdomelabs/baseplate/pull/715) [`68ab5bd`](https://github.com/halfdomelabs/baseplate/commit/68ab5bdbc98a0b4bbc46059bfabd84666a2ab18b) Thanks [@kingston](https://github.com/kingston)! - Refactor create-project to use sync engine for generating root directory files
78
+
79
+ - Updated dependencies [[`9638baf`](https://github.com/halfdomelabs/baseplate/commit/9638baf19fa0f68bed961daa0fe889822246c11a), [`68ab5bd`](https://github.com/halfdomelabs/baseplate/commit/68ab5bdbc98a0b4bbc46059bfabd84666a2ab18b), [`83e4e7f`](https://github.com/halfdomelabs/baseplate/commit/83e4e7f60adf67480cebb4ff419c015ff282010d)]:
80
+ - @baseplate-dev/project-builder-server@0.4.3
81
+ - @baseplate-dev/project-builder-cli@0.4.3
82
+ - @baseplate-dev/project-builder-lib@0.4.3
83
+ - @baseplate-dev/sync@0.4.3
84
+ - @baseplate-dev/utils@0.4.3
85
+
86
+ ## 0.4.2
87
+
88
+ ### Patch Changes
89
+
90
+ - [#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
91
+
92
+ - Updated dependencies [[`11fa86f`](https://github.com/halfdomelabs/baseplate/commit/11fa86fb8e7a209175f132b1b3d59cd24cf13d54), [`4be6c7d`](https://github.com/halfdomelabs/baseplate/commit/4be6c7dc7d900c37585b93cf5bb7198de6a41f1f)]:
93
+ - @baseplate-dev/project-builder-cli@0.4.2
94
+ - @baseplate-dev/utils@0.4.2
95
+
96
+ ## 0.4.1
97
+
98
+ ### Patch Changes
99
+
100
+ - Updated dependencies []:
101
+ - @baseplate-dev/project-builder-cli@0.4.1
102
+ - @baseplate-dev/utils@0.4.1
103
+
104
+ ## 0.4.0
105
+
106
+ ### Patch Changes
107
+
108
+ - [#679](https://github.com/halfdomelabs/baseplate/pull/679) [`b1634b0`](https://github.com/halfdomelabs/baseplate/commit/b1634b08904e6d862fe1a3a377bfe21b455ece5c) Thanks [@kingston](https://github.com/kingston)! - Upgrade pnpm to 10.18.3
109
+
110
+ - Updated dependencies [[`d324059`](https://github.com/halfdomelabs/baseplate/commit/d3240594e1c2bc2348eb1a7e8938f97ea5f55d22), [`c3c2a00`](https://github.com/halfdomelabs/baseplate/commit/c3c2a001d57a21f76e064af55941a43bedf26f18), [`57e15c0`](https://github.com/halfdomelabs/baseplate/commit/57e15c085099508898756385661df9cf54108466)]:
111
+ - @baseplate-dev/project-builder-cli@0.4.0
112
+ - @baseplate-dev/utils@0.4.0
113
+
114
+ ## 0.3.8
115
+
116
+ ### Patch Changes
117
+
118
+ - [#668](https://github.com/halfdomelabs/baseplate/pull/668) [`b208178`](https://github.com/halfdomelabs/baseplate/commit/b20817823d66fde1dfc1e3472ceedc2e6afd14c2) Thanks [@kingston](https://github.com/kingston)! - Upgrade PNPM to 10.16.1 and add minimumReleaseAge security setting
119
+ - Upgraded PNPM from 10.15.0 to 10.16.1 across all package.json files
120
+ - Added minimumReleaseAge=1440 (24 hours) to .npmrc files to delay installation of newly released dependencies
121
+ - This security setting reduces risk of installing compromised packages by ensuring only packages released at least one day ago can be installed
122
+ - Updated project creation template to include the new security setting for all new Baseplate projects
123
+
124
+ - Updated dependencies []:
125
+ - @baseplate-dev/project-builder-cli@0.3.8
126
+ - @baseplate-dev/utils@0.3.8
127
+
128
+ ## 0.3.7
129
+
130
+ ### Patch Changes
131
+
132
+ - Updated dependencies []:
133
+ - @baseplate-dev/project-builder-cli@0.3.7
134
+ - @baseplate-dev/utils@0.3.7
135
+
136
+ ## 0.3.6
137
+
138
+ ### Patch Changes
139
+
140
+ - Updated dependencies []:
141
+ - @baseplate-dev/project-builder-cli@0.3.6
142
+ - @baseplate-dev/utils@0.3.6
143
+
144
+ ## 0.3.5
145
+
146
+ ### Patch Changes
147
+
148
+ - Updated dependencies []:
149
+ - @baseplate-dev/project-builder-cli@0.3.5
150
+ - @baseplate-dev/utils@0.3.5
151
+
152
+ ## 0.3.4
153
+
154
+ ### Patch Changes
155
+
156
+ - [#644](https://github.com/halfdomelabs/baseplate/pull/644) [`fb35013`](https://github.com/halfdomelabs/baseplate/commit/fb35013bb5e5f990ed4e21a1f54f2192be7d3df6) Thanks [@kingston](https://github.com/kingston)! - Link project-builder-cli directly instead of fetching from npm registry
157
+ - Add @baseplate-dev/project-builder-cli as workspace dependency
158
+ - Ensure version consistency between create-project and CLI
159
+
160
+ - [#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
161
+
162
+ This upgrade modernizes the codebase with TypeScript 5.8, enables erasable syntax only mode for better performance, and updates runtime dependencies.
163
+
164
+ **Key Changes:**
165
+ - Upgraded TypeScript to version 5.8
166
+ - Enabled `erasableSyntaxOnly` compiler option for improved build performance
167
+ - Updated Node.js requirement to 22.18
168
+ - Updated PNPM requirement to 10.15
169
+ - Fixed parameter property syntax to be compatible with erasable syntax only mode
170
+
171
+ - Updated dependencies [[`783a495`](https://github.com/halfdomelabs/baseplate/commit/783a495411e76d28b781bbe0af5f57300a282353), [`f39ce15`](https://github.com/halfdomelabs/baseplate/commit/f39ce158c37d23472db96a42daccdc80f6d48f54), [`7d9e6d0`](https://github.com/halfdomelabs/baseplate/commit/7d9e6d01e0a9920cee4c4d499beeffc1c663494a)]:
172
+ - @baseplate-dev/project-builder-cli@0.3.4
173
+ - @baseplate-dev/utils@0.3.4
174
+
175
+ ## 0.3.3
176
+
177
+ ### Patch Changes
178
+
179
+ - Updated dependencies []:
180
+ - @baseplate-dev/utils@0.3.3
181
+
182
+ ## 0.3.2
183
+
184
+ ### Patch Changes
185
+
186
+ - Updated dependencies []:
187
+ - @baseplate-dev/utils@0.3.2
188
+
189
+ ## 0.3.1
190
+
191
+ ### Patch Changes
192
+
193
+ - Updated dependencies []:
194
+ - @baseplate-dev/utils@0.3.1
195
+
196
+ ## 0.3.0
197
+
198
+ ### Patch Changes
199
+
200
+ - Updated dependencies []:
201
+ - @baseplate-dev/utils@0.3.0
202
+
203
+ ## 0.2.6
204
+
205
+ ### Patch Changes
206
+
207
+ - Updated dependencies []:
208
+ - @baseplate-dev/utils@0.2.6
209
+
210
+ ## 0.2.5
211
+
212
+ ### Patch Changes
213
+
214
+ - Updated dependencies []:
215
+ - @baseplate-dev/utils@0.2.5
216
+
217
+ ## 0.2.4
218
+
219
+ ### Patch Changes
220
+
221
+ - Updated dependencies [[`ffe791f`](https://github.com/halfdomelabs/baseplate/commit/ffe791f6ab44e82c8481f3a18df9262dec71cff6)]:
222
+ - @baseplate-dev/utils@0.2.4
223
+
224
+ ## 0.2.3
225
+
226
+ ### Patch Changes
227
+
228
+ - Updated dependencies []:
229
+ - @baseplate-dev/utils@0.2.3
230
+
231
+ ## 0.2.2
232
+
233
+ ### Patch Changes
234
+
235
+ - Updated dependencies [[`f8c9284`](https://github.com/halfdomelabs/baseplate/commit/f8c9284752c12c6aab70481bf98e6fa402e61075)]:
236
+ - @baseplate-dev/utils@0.2.2
237
+
238
+ ## 0.2.1
239
+
240
+ ### Patch Changes
241
+
242
+ - Updated dependencies []:
243
+ - @baseplate-dev/utils@0.2.1
244
+
245
+ ## 0.2.0
246
+
247
+ ### Patch Changes
248
+
249
+ - Updated dependencies [[`06b4faf`](https://github.com/halfdomelabs/baseplate/commit/06b4fafaf3d2ed848d959a9911b9bfa26702d4a3), [`fd63554`](https://github.com/halfdomelabs/baseplate/commit/fd635544eb6df0385501f61f3e51bce554633458), [`56a3a89`](https://github.com/halfdomelabs/baseplate/commit/56a3a8944b9a557cca0484d78851fca10122e5f9)]:
250
+ - @baseplate-dev/utils@0.2.0
251
+
252
+ ## 0.1.3
253
+
254
+ ### Patch Changes
255
+
256
+ - [#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
257
+
258
+ - Updated dependencies [[`30fdf49`](https://github.com/halfdomelabs/baseplate/commit/30fdf4988de244c30d13c93b7761587d4c1413ad)]:
259
+ - @baseplate-dev/utils@0.1.3
260
+
261
+ ## 0.1.2
262
+
263
+ ### Patch Changes
264
+
265
+ - [#560](https://github.com/halfdomelabs/baseplate/pull/560) [`7e38ae9`](https://github.com/halfdomelabs/baseplate/commit/7e38ae9102c7c8ea958d2dab94e76be848d1c1a8) Thanks [@kingston](https://github.com/kingston)! - Remove NPM token requirement as Baseplate is now open source. The create-project command no longer prompts for an NPM token and related template files have been simplified.
266
+
267
+ - Updated dependencies [[`7e38ae9`](https://github.com/halfdomelabs/baseplate/commit/7e38ae9102c7c8ea958d2dab94e76be848d1c1a8)]:
268
+ - @baseplate-dev/utils@0.1.2
269
+
270
+ ## 0.1.1
271
+
272
+ ### Patch Changes
273
+
274
+ - [#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
275
+
276
+ - [#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
277
+
278
+ - Updated dependencies [[`17dd71e`](https://github.com/halfdomelabs/baseplate/commit/17dd71e3b9f83e3359eb007f8eab1c4792bdbb8b), [`9caaa0a`](https://github.com/halfdomelabs/baseplate/commit/9caaa0aed05677a75fed79601dcfd24ec85ab5ad)]:
279
+ - @baseplate-dev/utils@0.1.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baseplate-dev/create-project",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "CLI starter kit for creating a new Baseplate project",
5
5
  "keywords": [
6
6
  "cli",
@@ -27,7 +27,7 @@
27
27
  "files": [
28
28
  "README.md",
29
29
  "LICENSE",
30
- "CHANGELOG",
30
+ "CHANGELOG.md",
31
31
  "dist/**/*",
32
32
  "!dist/**/*.map",
33
33
  "!dist/**/*.tsbuildinfo",
@@ -38,21 +38,21 @@
38
38
  "chalk": "5.3.0",
39
39
  "commander": "^12.1.0",
40
40
  "ora": "^8.0.1",
41
- "@baseplate-dev/project-builder-cli": "0.5.1",
42
- "@baseplate-dev/project-builder-lib": "0.5.1",
43
- "@baseplate-dev/project-builder-server": "0.5.1",
44
- "@baseplate-dev/sync": "0.5.1",
45
- "@baseplate-dev/utils": "0.5.1"
41
+ "@baseplate-dev/project-builder-cli": "0.5.2",
42
+ "@baseplate-dev/project-builder-lib": "0.5.2",
43
+ "@baseplate-dev/project-builder-server": "0.5.2",
44
+ "@baseplate-dev/sync": "0.5.2",
45
+ "@baseplate-dev/utils": "0.5.2"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/node": "^22.17.2",
49
- "eslint": "9.32.0",
49
+ "eslint": "9.39.2",
50
50
  "memfs": "4.15.1",
51
- "prettier": "3.6.2",
51
+ "prettier": "3.8.1",
52
52
  "tsx": "4.20.6",
53
- "typescript": "5.8.3",
53
+ "typescript": "5.9.3",
54
54
  "vitest": "4.0.16",
55
- "@baseplate-dev/tools": "0.5.1"
55
+ "@baseplate-dev/tools": "0.5.2"
56
56
  },
57
57
  "engines": {
58
58
  "node": "^22.0.0"