@wraps.dev/cli 2.14.1 → 2.14.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/cli.js
CHANGED
|
@@ -21239,7 +21239,7 @@ import {
|
|
|
21239
21239
|
### wraps.config.ts
|
|
21240
21240
|
|
|
21241
21241
|
\`\`\`typescript
|
|
21242
|
-
import { defineConfig } from '@wraps.dev/
|
|
21242
|
+
import { defineConfig } from '@wraps.dev/client';
|
|
21243
21243
|
|
|
21244
21244
|
export default defineConfig({
|
|
21245
21245
|
org: 'my-org', // Organization slug
|
|
@@ -21253,7 +21253,7 @@ export default defineConfig({
|
|
|
21253
21253
|
### brand.ts
|
|
21254
21254
|
|
|
21255
21255
|
\`\`\`typescript
|
|
21256
|
-
import { defineBrand } from '@wraps.dev/
|
|
21256
|
+
import { defineBrand } from '@wraps.dev/client';
|
|
21257
21257
|
|
|
21258
21258
|
export default defineBrand({
|
|
21259
21259
|
primaryColor: '#5046e5',
|
|
@@ -21647,7 +21647,7 @@ function generateConfigFile(org, domain, region) {
|
|
|
21647
21647
|
const regionLine = region ? `
|
|
21648
21648
|
region: '${region}',` : `
|
|
21649
21649
|
// region: 'us-east-1',`;
|
|
21650
|
-
return `import { defineConfig } from '@wraps.dev/
|
|
21650
|
+
return `import { defineConfig } from '@wraps.dev/client';
|
|
21651
21651
|
|
|
21652
21652
|
export default defineConfig({
|
|
21653
21653
|
org: '${org}',${fromLine}${regionLine}
|
|
@@ -21657,7 +21657,7 @@ export default defineConfig({
|
|
|
21657
21657
|
`;
|
|
21658
21658
|
}
|
|
21659
21659
|
function generateBrandFile() {
|
|
21660
|
-
return `import { defineBrand } from '@wraps.dev/
|
|
21660
|
+
return `import { defineBrand } from '@wraps.dev/client';
|
|
21661
21661
|
|
|
21662
21662
|
export default defineBrand({
|
|
21663
21663
|
primaryColor: '#5046e5',
|
|
@@ -26577,7 +26577,7 @@ async function workflowsInit(options) {
|
|
|
26577
26577
|
console.log();
|
|
26578
26578
|
}
|
|
26579
26579
|
function generateMinimalConfig() {
|
|
26580
|
-
return `import { defineConfig } from '@wraps.dev/
|
|
26580
|
+
return `import { defineConfig } from '@wraps.dev/client';
|
|
26581
26581
|
|
|
26582
26582
|
export default defineConfig({
|
|
26583
26583
|
org: 'my-org',
|