atlasui-lib 0.1.0 → 0.1.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 +2 -3
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
- package/src/cli/index.ts +1 -1
- package/src/index.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,8 @@ This project follows [Semantic Versioning](https://semver.org).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
-
## [0.1.0] —
|
|
11
|
-
## [0.1.
|
|
10
|
+
## [0.1.0] — 2024-06-28
|
|
11
|
+
## [0.1.1] — 2025-03-13 (UPDATED)
|
|
12
12
|
|
|
13
13
|
### 🎉 Initial Release
|
|
14
14
|
|
|
@@ -154,4 +154,3 @@ plugin, and a complete CSS token system with light + dark mode.
|
|
|
154
154
|
|
|
155
155
|
---
|
|
156
156
|
|
|
157
|
-
[0.1.0]: https://github.com/JohnDev19/AtlasUI/releases/tag/v0.1.0
|
package/dist/cli/index.js
CHANGED
|
@@ -159,7 +159,7 @@ ${import_chalk.default.bold.blue(" \u2569 \u2569 \u2569 \u2569\u2550\u255D\u256
|
|
|
159
159
|
${import_chalk.default.dim("by JohnDev19 \xB7 https://github.com/JohnDev19/AtlasUI")}
|
|
160
160
|
`;
|
|
161
161
|
var program = new import_commander.Command();
|
|
162
|
-
program.name("atlasui-lib").description("atlasui-lib CLI \u2014 copy components into your project").version("0.1.
|
|
162
|
+
program.name("atlasui-lib").description("atlasui-lib CLI \u2014 copy components into your project").version("0.1.1", "-v, --version").addHelpText("before", banner);
|
|
163
163
|
program.command("init").description("Set up atlasui-lib in your project").option("--typescript", "Use TypeScript", true).option("--tailwind", "Configure Tailwind", true).option("--no-install", "Skip dependency install").option("-y, --yes", "Skip all prompts, use defaults").action(async (opts) => {
|
|
164
164
|
console.log(import_chalk.default.bold.blue("\n AtlasUI Init\n") + import_chalk.default.dim(" Let's get you set up\u2026\n"));
|
|
165
165
|
const cwd = process.cwd();
|
package/dist/index.js
CHANGED
|
@@ -65,7 +65,7 @@ var HoverCardPrimitive__namespace = /*#__PURE__*/_interopNamespace(HoverCardPrim
|
|
|
65
65
|
var ContextMenuPrimitive__namespace = /*#__PURE__*/_interopNamespace(ContextMenuPrimitive);
|
|
66
66
|
|
|
67
67
|
/**
|
|
68
|
-
* atlasui-lib v0.1.
|
|
68
|
+
* atlasui-lib v0.1.1
|
|
69
69
|
* Build anything. Ship faster.
|
|
70
70
|
* By JohnDev19 — https://github.com/JohnDev19/AtlasUI
|
|
71
71
|
* MIT License
|
|
@@ -3763,7 +3763,6 @@ var atlasPreset = {
|
|
|
3763
3763
|
* Docs: https://atlasui.vercel.app/
|
|
3764
3764
|
* Issues: https://github.com/JohnDev19/AtlasUI/issues
|
|
3765
3765
|
*
|
|
3766
|
-
* @version 0.1.0
|
|
3767
3766
|
* @license MIT
|
|
3768
3767
|
*/
|
|
3769
3768
|
|
package/dist/index.mjs
CHANGED
|
@@ -26,7 +26,7 @@ import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
|
26
26
|
import { Command } from 'cmdk';
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
* atlasui-lib v0.1.
|
|
29
|
+
* atlasui-lib v0.1.1
|
|
30
30
|
* Build anything. Ship faster.
|
|
31
31
|
* By JohnDev19 — https://github.com/JohnDev19/AtlasUI
|
|
32
32
|
* MIT License
|
|
@@ -3724,7 +3724,6 @@ var atlasPreset = {
|
|
|
3724
3724
|
* Docs: https://atlasui.vercel.app/
|
|
3725
3725
|
* Issues: https://github.com/JohnDev19/AtlasUI/issues
|
|
3726
3726
|
*
|
|
3727
|
-
* @version 0.1.0
|
|
3728
3727
|
* @license MIT
|
|
3729
3728
|
*/
|
|
3730
3729
|
|
package/package.json
CHANGED
package/src/cli/index.ts
CHANGED
|
@@ -43,7 +43,7 @@ const program = new Command();
|
|
|
43
43
|
program
|
|
44
44
|
.name("atlasui-lib")
|
|
45
45
|
.description("atlasui-lib CLI — copy components into your project")
|
|
46
|
-
.version("0.1.
|
|
46
|
+
.version("0.1.1", "-v, --version")
|
|
47
47
|
.addHelpText("before", banner);
|
|
48
48
|
|
|
49
49
|
// ─── init ─────────────────────────────────────────────────────────────────
|