Skip to content

Commit fb4ead4

Browse files
authored
Merge pull request #29 from vizzuhq/types
Fixed missing files
2 parents e9de436 + d9cb3ee commit fb4ead4

File tree

10 files changed

+31
-14
lines changed

10 files changed

+31
-14
lines changed

.github/workflows/cd-all.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
3939
- name: Build packages
4040
run: |
41-
yarn workspaces foreach --all --exclude . run build
41+
yarn workspaces foreach --all --exclude . run build &&
42+
yarn workspaces foreach --all --exclude . pack
4243
4344
- name: Publish packages
4445
if: ${{ inputs.release_workspaces }}

.github/workflows/cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
4242
- name: Build packages
4343
run: |
44-
yarn workspace ${{ inputs.workspace }} build
44+
yarn workspace ${{ inputs.workspace }} build &&
45+
yarn workspace ${{ inputs.workspace }} pack
4546
4647
- name: Publish package
4748
if: ${{ inputs.release_workspace }}

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@ jobs:
4545
4646
- name: Build packages
4747
run: |
48-
yarn workspaces foreach --all --exclude . run build
48+
yarn workspaces foreach --all --exclude . run build &&
49+
yarn workspaces foreach --all --exclude . pack

plugins/csv-parser/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [0.1.2]
6+
7+
### Fixed
8+
9+
- Fixed missing `d.ts` and `js.map` files
10+
511
## [0.1.1]
612

713
### Fixed

plugins/csv-parser/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vizzu/csv-parser",
33
"description": "Vizzu plugin for CSV parsing",
4-
"version": "0.1.1",
4+
"version": "0.1.2",
55
"type": "module",
66
"exports": {
77
".": {
@@ -12,7 +12,7 @@
1212
}
1313
},
1414
"files": [
15-
"dist/*",
15+
"dist/**",
1616
"package.json"
1717
],
1818
"main": "dist/cjs/index.js",
@@ -21,7 +21,6 @@
2121
"scripts": {
2222
"build": "run clear && node build/build.js && run types",
2323
"clear": "node build/clear.js",
24-
"pack": "run build && npm pack",
2524
"test": "vitest",
2625
"types": "npx -p typescript tsc src/*.ts --declaration --allowJs --emitDeclarationOnly --outDir dist/types"
2726
},

plugins/data-types/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
},
1414
"files": [
15-
"dist/*",
15+
"dist/**",
1616
"package.json"
1717
],
1818
"main": "dist/cjs/index.js",
@@ -21,7 +21,6 @@
2121
"scripts": {
2222
"build": "run clear && node build/build.js && run types",
2323
"clear": "node build/clear.js",
24-
"pack": "run build && npm pack",
2524
"test": "vitest",
2625
"types": "npx -p typescript tsc src/*.ts --declaration --allowJs --emitDeclarationOnly --outDir dist/types"
2726
},

plugins/marker-dropshadow/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [0.1.1]
6+
7+
### Fixed
8+
9+
- Fixed missing `d.ts` and `js.map` files
10+
511
## [0.1.0]
612

713
### Added

plugins/marker-dropshadow/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vizzu/marker-dropshadow",
33
"description": "Vizzu charting library marker plugin for drop shadow",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"type": "module",
66
"exports": {
77
".": {
@@ -12,7 +12,7 @@
1212
}
1313
},
1414
"files": [
15-
"dist/*",
15+
"dist/**",
1616
"package.json"
1717
],
1818
"main": "dist/cjs/index.js",
@@ -21,7 +21,6 @@
2121
"scripts": {
2222
"build": "run clear && node build/build.js",
2323
"clear": "node build/clear.js",
24-
"pack": "run build && npm pack",
2524
"test": "vitest"
2625
},
2726
"repository": {

plugins/video-capture/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [0.1.1]
6+
7+
### Fixed
8+
9+
- Fixed missing `d.ts` and `js.map` files
10+
511
## [0.1.0]
612

713
### Added

plugins/video-capture/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vizzu/video-capture",
33
"description": "Vizzu plugin for video capture",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"type": "module",
66
"exports": {
77
".": {
@@ -12,7 +12,7 @@
1212
}
1313
},
1414
"files": [
15-
"dist/*",
15+
"dist/**",
1616
"package.json"
1717
],
1818
"main": "dist/cjs/index.js",
@@ -21,7 +21,6 @@
2121
"scripts": {
2222
"build": "run clear && node build/build.js",
2323
"clear": "node build/clear.js",
24-
"pack": "run build && npm pack",
2524
"test": "vitest"
2625
},
2726
"repository": {

0 commit comments

Comments
 (0)