Compare commits

..

33 Commits

Author SHA1 Message Date
olayway
dc4646bc0b [package-lock.json][xs]: refresh after rebasing on main 2023-06-07 11:45:28 +02:00
olayway
11b30560f1 [remark-embed/README][xs]: add @portaljs to pckg name 2023-06-07 11:38:34 +02:00
olayway
c643e6b48d [remark-callouts/README][xs]: add @portaljs to pckg name 2023-06-07 11:38:34 +02:00
olayway
975b4d8697 [core/README][xs]:correct scope name 2023-06-07 11:38:34 +02:00
olayway
18cfb41471 [core][s]: rm old changelog 2023-06-07 11:38:34 +02:00
olayway
113ab3c0c2 [remark-wiki-link/project.json][xs]: rm publish targets 2023-06-07 11:38:34 +02:00
olayway
5dbb4e5f38 [remark-wiki-link][xs]: adjst package.json 2023-06-07 11:38:34 +02:00
olayway
a592048d9a [remark-wiki-link][xs]:rm old changelog 2023-06-07 11:38:34 +02:00
olayway
5e863e4534 [remark-wiki-link/README][xs]: replace @flowershow with @portaljs 2023-06-07 11:38:34 +02:00
olayway
00166a5975 [remark-wiki-link/test][xs]:specify format
- also temporarily force any type on htmlExtension
2023-06-07 11:38:34 +02:00
olayway
310a4cc42a [package.json][xs]: install missing deps 2023-06-07 11:38:34 +02:00
olayway
f6e7e1f01a [remark-wiki-link/eslintrc][xs]:adjst ignorePatterns 2023-06-07 11:38:34 +02:00
olayway
73d10e9771 [remark-embed][s]: rename to @portaljs/remark-embed 2023-06-07 11:38:34 +02:00
olayway
7303a492fe [remark-embed][xs]: rm publish targets 2023-06-07 11:38:34 +02:00
olayway
c02f7c4a02 [remark-embed/jest.config][xs]: rm unknown option coverageDirectory 2023-06-07 11:38:34 +02:00
olayway
90d736a895 [remark-callouts][s]: rm pubish targets and adjst build executor 2023-06-07 11:38:34 +02:00
olayway
e25f1f2cd2 [remark-callouts][xs]: adjst fields in package.json 2023-06-07 11:38:34 +02:00
olayway
93f5316bd4 [package.json][s]: install missing deps 2023-06-07 11:38:34 +02:00
olayway
a02d9dc1d7 [remark-callouts/project.json][xs]: adjst test pattern 2023-06-07 11:38:34 +02:00
olayway
395e072ee5 [packages][m]: mv @flowershow/remark-embed here 2023-06-07 11:38:34 +02:00
olayway
e32332ac84 [packages][m]: mv @flowershow/remark-wiki-link here 2023-06-07 11:38:34 +02:00
olayway
ee6812974d [packages][m]: mv @flowershow/remark-wiki-link here 2023-06-07 11:38:34 +02:00
olayway
c61a2db628 [core/project.json][xs]: rm publish targets 2023-06-07 11:38:34 +02:00
olayway
0710955032 [core/.eslintrc][xs]: adjust ignorePatterns 2023-06-07 11:38:34 +02:00
olayway
6b040b0ca1 [packages.json][s]:use same version for all nrwl packages 2023-06-07 11:38:34 +02:00
olayway
46017e407c [core/package.json][xs]: install core-js 2023-06-07 11:38:34 +02:00
olayway
b9d94df990 [core/jest.config][xs]: rm coverageDirectory 2023-06-07 11:38:34 +02:00
olayway
22b57ae46f [core/tsconfig][xs]: rm extends 2023-06-07 11:38:34 +02:00
olayway
af6957e173 [core/package.json][s]: fix mermaid versions 2023-06-07 11:38:34 +02:00
olayway
9aaeb559c4 [packages/core][xs]:replace deprecated rollup executor 2023-06-07 11:38:34 +02:00
olayway
e44e19737d [package.json][xs]: setup npm workspaces 2023-06-07 11:38:31 +02:00
olayway
772447df11 [packages/core][xs]: rename to @portaljs/core 2023-06-07 11:37:17 +02:00
olayway
9ef5d52497 [packages][m]: mv @flowershow/core package here 2023-06-07 11:37:17 +02:00
13 changed files with 39 additions and 49 deletions

View File

@@ -1,11 +1,13 @@
{
"name": "portaljs",
"workspaces": ["./packages/*"],
"workspaces": [
"./packages/*"
],
"version": "0.0.0",
"license": "MIT",
"scripts": {
"changeset": "changeset",
"prerelease": "nx affected --targets=lint,test,build",
"prerelease": "nx affected --targets=lint,test",
"release": "changeset publish"
},
"private": true,

View File

@@ -1,7 +0,0 @@
# @portaljs/core
## 1.0.1
### Patch Changes
- [`b7158a5`](https://github.com/datopian/portaljs/commit/b7158a5be668018d9b947f9c9d63fa30fa91d18b) Thanks [@olayway](https://github.com/olayway)! - Fix what's getting published to npm.

View File

@@ -1,6 +1,6 @@
{
"name": "@portaljs/core",
"version": "1.0.1",
"version": "1.0.0",
"description": "Core Portal.JS components, configs and utils.",
"repository": {
"type": "git",
@@ -16,9 +16,6 @@
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"dependencies": {

View File

@@ -17,7 +17,13 @@
"generateExportsField": true,
"rollupConfig": "@nrwl/react/plugins/bundle-rollup",
"compiler": "babel",
"assets": []
"assets": [
{
"glob": "packages/core/README.md",
"input": ".",
"output": "."
}
]
}
},
"lint": {

View File

@@ -1,7 +0,0 @@
# @portaljs/remark-callouts
## 1.0.1
### Patch Changes
- [`b7158a5`](https://github.com/datopian/portaljs/commit/b7158a5be668018d9b947f9c9d63fa30fa91d18b) Thanks [@olayway](https://github.com/olayway)! - Fix what's getting published to npm.

View File

@@ -1,6 +1,6 @@
{
"name": "@portaljs/remark-callouts",
"version": "1.0.1",
"version": "1.0.0",
"description": "Remark plugin to add support for blockquote-based admonitions/callouts",
"repository": {
"type": "git",
@@ -24,9 +24,6 @@
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"dependencies": {
"mdast-util-from-markdown": "^1.2.0",
"svg-parser": "^2.0.4",

View File

@@ -28,7 +28,13 @@
"project": "packages/remark-callouts/package.json",
"format": ["esm", "cjs"],
"extractCss": true,
"generateExportsField": true,
"assets": [
{
"glob": "packages/remark-callouts/README.md",
"input": ".",
"output": "."
},
{
"glob": "packages/remark-callouts/styles.css",
"input": ".",

View File

@@ -1,7 +0,0 @@
# @portaljs/remark-embed
## 1.0.1
### Patch Changes
- [`b7158a5`](https://github.com/datopian/portaljs/commit/b7158a5be668018d9b947f9c9d63fa30fa91d18b) Thanks [@olayway](https://github.com/olayway)! - Fix what's getting published to npm.

View File

@@ -1,6 +1,6 @@
{
"name": "@portaljs/remark-embed",
"version": "1.0.1",
"version": "1.0.0",
"description": "Converts youtube link in mdx to an iframe embed",
"repository": {
"type": "git",
@@ -22,9 +22,6 @@
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"dependencies": {
"unist-util-visit": "^4.1.1"
},

View File

@@ -29,7 +29,15 @@
"tsConfig": "packages/remark-embed/tsconfig.lib.json",
"project": "packages/remark-embed/package.json",
"format": ["esm", "cjs"],
"external": ["unist-util-visit"]
"external": ["unist-util-visit"],
"generateExportsField": true,
"assets": [
{
"glob": "packages/remark-embed/README.md",
"input": ".",
"output": "."
}
]
}
}
},

View File

@@ -1,7 +0,0 @@
# @portaljs/remark-wiki-link
## 1.0.1
### Patch Changes
- [`b7158a5`](https://github.com/datopian/portaljs/commit/b7158a5be668018d9b947f9c9d63fa30fa91d18b) Thanks [@olayway](https://github.com/olayway)! - Fix what's getting published to npm.

View File

@@ -1,6 +1,6 @@
{
"name": "@portaljs/remark-wiki-link",
"version": "1.0.1",
"version": "1.0.0",
"description": "Parse and render wiki-style links in markdown especially Obsidian style links.",
"repository": {
"type": "git",
@@ -23,9 +23,6 @@
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"dependencies": {
"mdast-util-to-markdown": "^1.5.0",
"mdast-util-wiki-link": "^0.0.2",

View File

@@ -29,7 +29,15 @@
"tsConfig": "packages/remark-wiki-link/tsconfig.lib.json",
"project": "packages/remark-wiki-link/package.json",
"format": ["esm", "cjs"],
"external": ["mdast-util-wiki-link"]
"external": ["mdast-util-wiki-link"],
"generateExportsField": true,
"assets": [
{
"glob": "packages/remark-wiki-link/README.md",
"input": ".",
"output": "."
}
]
}
}
},