Skip to content

Commit 1df2b81

Browse files
committed
Update template for vite
1 parent 7b91c14 commit 1df2b81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"eslint:fix": "eslint \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --fix",
5959
"prettier": "prettier \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --check",
6060
"prettier:fix": "prettier \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --write",
61-
"prepublish": "yarn run clean && yarn run release",
61+
"prepublish": "npm run clean && npm run release",
6262
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b",
6363

6464
"prepare": "npm run release"

src/templates/index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export { {{{name}}} } from './models/{{{name}}}';
1313
{{else if @root.useUnionTypes}}
1414
export type { {{{name}}} } from './models/{{{name}}}';
1515
{{else if enums}}
16-
export { {{{name}}} } from './models/{{{name}}}';
16+
export type { {{{name}}} } from './models/{{{name}}}';
1717
{{else}}
1818
export type { {{{name}}} } from './models/{{{name}}}';
1919
{{/if}}

0 commit comments

Comments
 (0)