@c9up/nebula 0.1.1 → 0.1.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/dist/configure.js +1 -4
- package/package.json +1 -1
- package/src/configure.ts +1 -4
package/dist/configure.js
CHANGED
|
@@ -72,10 +72,7 @@ export async function configure(codemods, flags = {}) {
|
|
|
72
72
|
// CSS dependency at all — the app owns its build tooling, and a UI library
|
|
73
73
|
// quietly adding one to someone's dependency tree is how a tree gets away
|
|
74
74
|
// from them.
|
|
75
|
-
const lines = [
|
|
76
|
-
"",
|
|
77
|
-
"[@c9up/nebula] configured with the " + name + " adapter.",
|
|
78
|
-
];
|
|
75
|
+
const lines = ["", `[@c9up/nebula] configured with the ${name} adapter.`];
|
|
79
76
|
if (adapter.packages.length > 0) {
|
|
80
77
|
lines.push(" Install the engine yourself:", ` pnpm add -D ${adapter.packages.join(" ")}`);
|
|
81
78
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c9up/nebula",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Nebula — shadcn/ui ported to Aurora, organised as atomic design. Zero-dependency headless primitives, cva reimplemented, copy-the-source registry.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
package/src/configure.ts
CHANGED
|
@@ -105,10 +105,7 @@ export async function configure(
|
|
|
105
105
|
// CSS dependency at all — the app owns its build tooling, and a UI library
|
|
106
106
|
// quietly adding one to someone's dependency tree is how a tree gets away
|
|
107
107
|
// from them.
|
|
108
|
-
const lines = [
|
|
109
|
-
"",
|
|
110
|
-
"[@c9up/nebula] configured with the " + name + " adapter.",
|
|
111
|
-
];
|
|
108
|
+
const lines = ["", `[@c9up/nebula] configured with the ${name} adapter.`];
|
|
112
109
|
|
|
113
110
|
if (adapter.packages.length > 0) {
|
|
114
111
|
lines.push(
|