rxn-ui 0.5.3 → 0.5.4

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/cli/index.mjs +0 -3
  2. package/package.json +1 -1
package/cli/index.mjs CHANGED
@@ -8,7 +8,6 @@ import { detectProject, loadConfig, saveConfig } from './utils/config.js'
8
8
  import { fetchFile, fetchJSON } from './utils/fetch.js'
9
9
  import { colors, error, info, log, success } from './utils/logger.js'
10
10
 
11
- // GitHub repository info
12
11
  const GITHUB_REPO = 'r2-h/artharexian-ui'
13
12
  const GITHUB_RAW = `https://raw.githubusercontent.com/${GITHUB_REPO}/main`
14
13
 
@@ -115,8 +114,6 @@ async function add(name, cmdOptions = {}) {
115
114
  await downloadStyles(stylesDir, tag)
116
115
  showDependencies(entry)
117
116
 
118
- success(`${name} added successfully`)
119
-
120
117
  if (entry.imports) {
121
118
  log(`\n${colors.bold}Usage:${colors.reset}`)
122
119
  for (const imp of entry.imports) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rxn-ui",
3
3
  "description": "Vue 3 UI component library",
4
- "version": "0.5.3",
4
+ "version": "0.5.4",
5
5
  "license": "MIT",
6
6
  "private": false,
7
7
  "type": "module",