Skip to content

Commit 777dc6a

Browse files
committed
ci: improve versioning script and add index
1 parent 2107ff0 commit 777dc6a

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
@@ -36,7 +36,7 @@
3636
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
3737
"release": " npm run build && node ci/compress.js",
3838
"preversion": "npm run build && npm test",
39-
"version": "npm run build && node ci/compress.js && git add -A dist"
39+
"version": "npm run build && node ci/compress.js && git add -A dist src/index.ts"
4040
},
4141
"lint-staged": {
4242
"js/*.js": [

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export { Tooltip } from './tooltip';
5252
export { Waves } from './waves';
5353
export { Range } from './range';
5454

55-
export const version = '2.1.0';
55+
export const version = '2.1.1';
5656

5757
export const Grid = (children: any = '') => {
5858
return `<div class="row">${children}</row>`;

0 commit comments

Comments
 (0)