Skip to content

Commit e08605f

Browse files
committed
Code clean up
1 parent bfc4130 commit e08605f

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[![license](https://img.shields.io/npm/l/vue-virtualised.svg?style=flat)](LICENSE)
55
[![vue3](https://img.shields.io/badge/vue-3.x-brightgreen.svg)](https://v3.vuejs.org/)
66
[![npm type definitions](https://img.shields.io/npm/types/vue-virtualised)](https://www.typescriptlang.org/)
7+
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
78

89
> Vue components developed by [Vue.js 3.0](https://v3.vuejs.org/) for efficiently rendering large scrollable lists and hierarchical data. `vue-virtualised` is able to render and update 1 million nodes within a few seconds in front-end.
910

api-extractor.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*
4646
* SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
4747
*/
48-
"mainEntryPointFilePath": "<projectFolder>/lib/index.d.ts",
48+
"mainEntryPointFilePath": "<projectFolder>/dist/index.d.ts",
4949

5050
/**
5151
* A list of NPM package names whose exports should be treated as part of this package.

build/rollup.config.base.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ export default {
4646
tsconfigOverride: {
4747
compilerOptions: {
4848
// declaration: false,
49-
plugins: [
50-
{ transform: "typescript-transform-paths" },
51-
{
52-
transform: "typescript-transform-paths",
53-
afterDeclarations: true,
54-
},
55-
],
49+
// plugins: [
50+
// { transform: "typescript-transform-paths" },
51+
// {
52+
// transform: "typescript-transform-paths",
53+
// afterDeclarations: true,
54+
// },
55+
// ],
5656
},
5757
},
5858
}),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"email": "chenfrey920417@outlook.com",
99
"url": "https://github.com/FallingCeilingS"
1010
},
11-
"types": "src/types/vue-virtualised.d.ts",
11+
"types": "dist/index.d.ts",
1212
"scripts": {
1313
"serve": "vue-cli-service serve",
1414
"build": "npm run build:umd && npm run build:es && npm run build:browser && tsc-alias",

0 commit comments

Comments
 (0)