@atelier-ui/create-workspace 0.2.0 → 0.2.1

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 CHANGED
@@ -1,3 +1,13 @@
1
+ ## 0.2.1 (2026-07-21)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - repair Llm->Atl rename residue the codemod regexes missed ([7bedf22](https://github.com/DominikPieper/atelier-ui/commit/7bedf22))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Dominik Pieper @DominikPieper
10
+
1
11
  ## 0.2.0 (2026-07-21)
2
12
 
3
13
  ### 🚀 Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atelier-ui/create-workspace",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Nx preset for Atelier workshop workspaces",
5
5
  "keywords": [
6
6
  "nx",
@@ -86,8 +86,8 @@ function presetGenerator(tree, options) {
86
86
  if (f === 'angular') {
87
87
  return `### Angular (\`@atelier-ui/angular\`)
88
88
  - Selectors: \`atl-button\`, \`atl-input\`, \`atl-dialog\`, …
89
- - Import: \`import { AtlButtonComponent } from '@atelier-ui/angular';\`
90
- - Add to \`@Component({ imports: [AtlButtonComponent] })\`
89
+ - Import: \`import { AtlButton } from '@atelier-ui/angular';\`
90
+ - Add to \`@Component({ imports: [AtlButton] })\`
91
91
  - Form controls implement Signal Forms (\`FormValueControl\` / \`FormCheckboxControl\`)`;
92
92
  }
93
93
  if (f === 'react') {