Skip to content

Commit 6b9e2ac

Browse files
committed
feat: update package names to use the '@DevByRayRay' scope across all components and documentation
1 parent eb1a0f9 commit 6b9e2ac

File tree

11 files changed

+20
-27
lines changed

11 files changed

+20
-27
lines changed

.github/workflows/publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
node-version: '20'
3636
registry-url: 'https://npm.pkg.github.com'
37-
scope: '@vue-web-component-library'
37+
scope: '@devbyrayray'
3838

3939
- name: Setup PNPM
4040
uses: pnpm/action-setup@v3

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vue-web-component-library",
2+
"name": "@devbyrayray/vue-wc-library",
33
"version": "0.0.2",
44
"description": "A Vue-based accessible design system with headless web components",
55
"private": true,

packages/components/button/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@ An accessible, customizable button component for Vue applications, built as a we
55
## Installation
66

77
```bash
8-
npm install @vue-web-component-library/button
9-
# or
10-
pnpm add @vue-web-component-library/button
11-
# or
12-
yarn add @vue-web-component-library/button
8+
npm install @devbyrayray/vue-wc-button
9+
pnpm add @devbyrayray/vue-wc-button
10+
yarn add @devbyrayray/vue-wc-button
1311
```
1412

1513
## Usage
1614

1715
```html
1816
<!-- Import the component -->
1917
<script>
20-
import '@vue-web-component-library/button';
18+
import '@devbyrayray/vue-wc-button';
2119
</script>
2220

2321
<!-- Basic usage -->

packages/components/button/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue-web-component-library/button",
2+
"name": "@devbyrayray/vue-wc-button",
33
"version": "0.0.2",
44
"description": "Accessible Button web component for Vue",
55
"main": "dist/index.js",

packages/components/icon/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@ An accessible, customizable icon component for Vue applications using Google Mat
55
## Installation
66

77
```bash
8-
npm install @vue-web-component-library/icon
9-
# or
10-
pnpm add @vue-web-component-library/icon
11-
# or
12-
yarn add @vue-web-component-library/icon
8+
npm install @devbyrayray/vue-wc-icon
9+
pnpm add @devbyrayray/vue-wc-icon
10+
yarn add @devbyrayray/vue-wc-icon
1311
```
1412

1513
## Usage
1614

1715
```html
1816
<!-- Import the component -->
1917
<script>
20-
import '@vue-web-component-library/icon';
18+
import '@devbyrayray/vue-wc-icon';
2119
</script>
2220

2321
<!-- Basic usage -->

packages/components/icon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue-web-component-library/icon",
2+
"name": "@devbyrayray/vue-wc-icon",
33
"version": "0.0.2",
44
"description": "Accessible Icon web component for Vue using Google Material Icons",
55
"main": "dist/index.js",

packages/components/input/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@ An accessible, customizable input component for Vue applications, built as a web
55
## Installation
66

77
```bash
8-
npm install @vue-web-component-library/input
9-
# or
10-
pnpm add @vue-web-component-library/input
11-
# or
12-
yarn add @vue-web-component-library/input
8+
npm install @devbyrayray/vue-wc-input
9+
pnpm add @devbyrayray/vue-wc-input
10+
yarn add @devbyrayray/vue-wc-input
1311
```
1412

1513
## Usage
1614

1715
```html
1816
<!-- Import the component -->
1917
<script>
20-
import '@vue-web-component-library/input';
18+
import '@devbyrayray/vue-wc-input';
2119
</script>
2220

2321
<!-- Basic usage -->

packages/components/input/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue-web-component-library/input",
2+
"name": "@devbyrayray/vue-wc-input",
33
"version": "0.0.2",
44
"description": "Accessible Input web component for Vue",
55
"main": "dist/index.js",

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue-web-component-library/components",
2+
"name": "@devbyrayray/vue-wc-components",
33
"version": "0.0.2",
44
"description": "All accessible Vue web components in one package",
55
"main": "dist/index.js",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue-web-component-library/core",
2+
"name": "@devbyrayray/vue-wc-core",
33
"version": "0.0.2",
44
"description": "Core utilities for Vue Web Component Library",
55
"main": "dist/index.js",

packages/vite/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue-web-component-library/vite",
2+
"name": "@devbyrayray/vue-wc-vite",
33
"version": "0.0.2",
44
"description": "Reuseable Vite config for Vue Web Component Library",
55
"main": "vite.config.ts",
@@ -8,4 +8,3 @@
88
"sideEffects": false,
99
"packageManager": "[email protected]"
1010
}
11-

0 commit comments

Comments
 (0)