[packages/*][s]: add prepublish script to build first

This commit is contained in:
olayway 2023-06-08 23:40:52 +02:00
parent e0e720338f
commit 40d80d2282
9 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
'@portaljs/remark-callouts': patch
---
Fix: missing files in the published package.

View File

@ -0,0 +1,5 @@
---
'@portaljs/remark-embed': patch
---
Fix: missing files in the published package.

View File

@ -0,0 +1,5 @@
---
'@portaljs/components': patch
---
Fix: missing files in the published package.

View File

@ -0,0 +1,5 @@
---
'@portaljs/remark-wiki-link': patch
---
Fix: missing files in the published package.

View File

@ -0,0 +1,5 @@
---
'@portaljs/core': patch
---
Fix: missing files in the published package.

View File

@ -16,6 +16,9 @@
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublish": "nx build core"
},
"files": [
"dist"
],

View File

@ -24,6 +24,9 @@
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublish": "nx build remark-callouts"
},
"files": [
"dist"
],

View File

@ -22,6 +22,9 @@
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublish": "nx build remark-embed"
},
"files": [
"dist"
],

View File

@ -23,6 +23,9 @@
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublish": "nx build remark-wiki-link"
},
"files": [
"dist"
],