Skip to content

Commit be575da

Browse files
Changing package over to @wdns org
1 parent 7097520 commit be575da

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</p>
88

99
<p align="center">
10-
<a href="https://www.npmjs.com/package/vuetify-drilldown-table">
11-
<img src="https://img.shields.io/npm/v/vuetify-drilldown-table?color=1867c0&logo=npm" alt="NPM Package">
10+
<a href="https://www.npmjs.com/package/@wdns/vuetify-drilldown-table">
11+
<img src="https://img.shields.io/npm/v/%40wdns/vuetify-drilldown-table?color=1867c0&logo=npm" alt="NPM Package">
1212
</a>
1313
&nbsp;
1414
<a href="https://github.com/webdevnerdstuff/vuetify-drilldown-table">
@@ -25,12 +25,12 @@ The Vuetify Drilldown Table is a powerful component that enhances the functional
2525

2626
Using [pnpm](https://pnpm.io/):
2727
```
28-
pnpm add vuetify-drilldown-table
28+
pnpm add @wdns/vuetify-drilldown-table
2929
```
3030

3131
Using npm:
3232
```
33-
npm i vuetify-drilldown-table
33+
npm i @wdns/vuetify-drilldown-table
3434
```
3535

3636
## Documentation

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
2-
"name": "vuetify-drilldown-table",
2+
"name": "@wdns/vuetify-drilldown-table",
33
"version": "1.0.0-beta-14",
44
"description": "The Vuetify Drilldown Table is a powerful component that enhances the functionality of the Vuetify framework's VDataTable and VDataTableServer. It provides a recursive table structure, allowing you to display hierarchical data in a nested format.",
55
"private": false,
6+
"publishConfig": {
7+
"access": "public"
8+
},
69
"main": "dist/vuetify-drilldown-table.cjs.js",
710
"module": "dist/vuetify-drilldown-table.es.js",
811
"types": "dist/types/index.d.ts",

src/documentation/DocsPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<v-row>
4141
<v-col cols="12">
4242
<CodeBlock
43-
code="pnpm add vuetify-drilldown-table"
43+
code="pnpm add @wdns/vuetify-drilldown-table"
4444
:highlightjs="codeBlockSettings.plugin === 'highlightjs'"
4545
lang="plain"
4646
:prismjs="codeBlockSettings.plugin === 'prismjs'"
@@ -56,7 +56,7 @@
5656
</v-col>
5757
<v-col cols="12">
5858
<CodeBlock
59-
code="npm i vuetify-drilldown-table"
59+
code="npm i @wdns/vuetify-drilldown-table"
6060
:highlightjs="codeBlockSettings.plugin === 'highlightjs'"
6161
lang="plain"
6262
:prismjs="codeBlockSettings.plugin === 'prismjs'"

vite.build.config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,16 @@ const banner = `/**
2525
*/
2626
`;
2727

28+
const pkgName = 'vuetify-drilldown-table';
29+
2830
export default defineConfig({
2931
publicDir: false,
3032
build: {
3133
lib: {
3234
entry: './src/plugin/index.ts',
33-
name: pkg.name,
35+
name: pkgName,
3436
formats: ['es', 'cjs'],
35-
fileName: format => `${pkg.name}.${format}.js`,
37+
fileName: format => `${pkgName}.${format}.js`,
3638
},
3739
rollupOptions: {
3840
input: {

0 commit comments

Comments
 (0)