Skip to content

Commit

Permalink
chore(cli): rename package and fix name scanner
Browse files Browse the repository at this point in the history
  • Loading branch information
bjohansebas committed Sep 1, 2024
1 parent 43878f1 commit 3675f72
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 226 deletions.
21 changes: 11 additions & 10 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "rapidapp",
"name": "@bjohansebas/cli",
"version": "0.0.1",
"private": true,
"license": "MPL-2.0",
"description": "The fastest and most customizable way to set up a modern web app in seconds.",
"author": {
Expand All @@ -9,7 +10,7 @@
},
"keywords": ["cli", "frameworks", "set up", "rapidapp", "tools"],
"bin": {
"rapidapp": "dist/index.js"
"pkgs": "dist/index.js"
},
"files": ["dist"],
"scripts": {
Expand All @@ -21,33 +22,33 @@
},
"devDependencies": {
"@bjohansebas/config": "0.1.0",
"@rapidapp/scanner": "workspace:*",
"@types/node": "20.14.11",
"@bjohansebas/scanner": "workspace:*",
"@types/node": "22.5.1",
"@types/prompts": "2.4.9",
"@vercel/ncc": "0.38.1",
"commander": "12.1.0",
"conf": "13.0.1",
"ora": "8.0.1",
"ora": "8.1.0",
"picocolors": "1.0.1",
"prompts": "2.4.2",
"typescript": "5.5.4",
"update-check": "1.5.4",
"vitest": "2.0.4"
"vitest": "2.0.5"
},
"homepage": "https://github.com/bjohansebas/rapidapp",
"homepage": "https://github.com/bjohansebas/pkgs",
"repository": {
"type": "git",
"url": "git+https://github.com/bjohansebas/rapidapp.git",
"url": "git+https://github.com/bjohansebas/pkgs.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/bjohansebas/rapidapp/issues"
"url": "https://github.com/bjohansebas/pkgs/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/bjohansebas"
},
"packageManager": "pnpm@9.6.0",
"packageManager": "pnpm@9.9.0",
"engines": {
"node": ">=18.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/commands/scan.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'node:path'

import { generateReport } from '@rapidapp/scanner'
import { scanFolder } from '@rapidapp/scanner/helpers'
import { generateReport } from '@bjohansebas/scanner'
import { scanFolder } from '@bjohansebas/scanner/helpers'
import ora from 'ora'
import { cyan, green } from 'picocolors'

Expand Down
2 changes: 1 addition & 1 deletion packages/scanner/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @rapidapp/scanner
# @bjohansebas/scanner

[![NPM Version][npm-version-image]][npm-url]
[![NPM Install Size][npm-install-size-image]][npm-install-size-url]
Expand Down
Loading

0 comments on commit 3675f72

Please sign in to comment.