ui-thing 0.0.3 → 0.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-thing",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "CLI used to add Nuxt 3 components to a project",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -16,7 +16,7 @@
16
16
  "dev": "tsup --watch",
17
17
  "start": "node dist/index.js",
18
18
  "format": "npx prettier --write .",
19
- "release": "npm run format && npm run build && npx changelogen@latest --release && npm publish && git push --follow-tags"
19
+ "release": "npm run build && npx changelogen@latest --release && npm publish && git push --follow-tags"
20
20
  },
21
21
  "keywords": [
22
22
  "cli",
@@ -44,7 +44,7 @@ export const initPrompts = async () => {
44
44
  {
45
45
  name: "force",
46
46
  type: "confirm",
47
- message: "Should we ask before overwriting files?",
47
+ message: "Should we just replace component files if they already exist?",
48
48
  initial: true,
49
49
  },
50
50
  {
@@ -1,19 +0,0 @@
1
- name: CI
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- build:
10
- runs-on: ubuntu-latest
11
- steps:
12
- - uses: actions/checkout@v3
13
- - name: Install dependencies
14
- run: npm install
15
- - uses: actions/setup-node@v4
16
- with:
17
- node-version: "18.x"
18
- - name: Build
19
- run: npm run format && npm run build