Compare commits
11 Commits
@portaljs/
...
@portaljs/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39c862627d | ||
|
|
b7158a5be6 | ||
|
|
ee87c4f623 | ||
|
|
4141af0e82 | ||
|
|
7d36d22671 | ||
|
|
eab2d65113 | ||
|
|
51d0a7692e | ||
|
|
cdd90ac384 | ||
|
|
dcf6400304 | ||
|
|
247b2412d6 | ||
|
|
1ad9b85e02 |
@@ -1,13 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "portaljs",
|
"name": "portaljs",
|
||||||
"workspaces": [
|
"workspaces": ["./packages/*"],
|
||||||
"./packages/*"
|
|
||||||
],
|
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"changeset": "changeset",
|
"changeset": "changeset",
|
||||||
"prerelease": "nx affected --targets=lint,test",
|
"prerelease": "nx affected --targets=lint,test,build",
|
||||||
"release": "changeset publish"
|
"release": "changeset publish"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|||||||
7
packages/core/CHANGELOG.md
Normal file
7
packages/core/CHANGELOG.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# @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.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@portaljs/core",
|
"name": "@portaljs/core",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "Core Portal.JS components, configs and utils.",
|
"description": "Core Portal.JS components, configs and utils.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -16,6 +16,9 @@
|
|||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -17,13 +17,7 @@
|
|||||||
"generateExportsField": true,
|
"generateExportsField": true,
|
||||||
"rollupConfig": "@nrwl/react/plugins/bundle-rollup",
|
"rollupConfig": "@nrwl/react/plugins/bundle-rollup",
|
||||||
"compiler": "babel",
|
"compiler": "babel",
|
||||||
"assets": [
|
"assets": []
|
||||||
{
|
|
||||||
"glob": "packages/core/README.md",
|
|
||||||
"input": ".",
|
|
||||||
"output": "."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
|
|||||||
7
packages/remark-callouts/CHANGELOG.md
Normal file
7
packages/remark-callouts/CHANGELOG.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# @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.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@portaljs/remark-callouts",
|
"name": "@portaljs/remark-callouts",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "Remark plugin to add support for blockquote-based admonitions/callouts",
|
"description": "Remark plugin to add support for blockquote-based admonitions/callouts",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -24,6 +24,9 @@
|
|||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"mdast-util-from-markdown": "^1.2.0",
|
"mdast-util-from-markdown": "^1.2.0",
|
||||||
"svg-parser": "^2.0.4",
|
"svg-parser": "^2.0.4",
|
||||||
|
|||||||
@@ -28,13 +28,7 @@
|
|||||||
"project": "packages/remark-callouts/package.json",
|
"project": "packages/remark-callouts/package.json",
|
||||||
"format": ["esm", "cjs"],
|
"format": ["esm", "cjs"],
|
||||||
"extractCss": true,
|
"extractCss": true,
|
||||||
"generateExportsField": true,
|
|
||||||
"assets": [
|
"assets": [
|
||||||
{
|
|
||||||
"glob": "packages/remark-callouts/README.md",
|
|
||||||
"input": ".",
|
|
||||||
"output": "."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"glob": "packages/remark-callouts/styles.css",
|
"glob": "packages/remark-callouts/styles.css",
|
||||||
"input": ".",
|
"input": ".",
|
||||||
|
|||||||
7
packages/remark-embed/CHANGELOG.md
Normal file
7
packages/remark-embed/CHANGELOG.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# @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.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@portaljs/remark-embed",
|
"name": "@portaljs/remark-embed",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "Converts youtube link in mdx to an iframe embed",
|
"description": "Converts youtube link in mdx to an iframe embed",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -22,6 +22,9 @@
|
|||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"unist-util-visit": "^4.1.1"
|
"unist-util-visit": "^4.1.1"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -29,15 +29,7 @@
|
|||||||
"tsConfig": "packages/remark-embed/tsconfig.lib.json",
|
"tsConfig": "packages/remark-embed/tsconfig.lib.json",
|
||||||
"project": "packages/remark-embed/package.json",
|
"project": "packages/remark-embed/package.json",
|
||||||
"format": ["esm", "cjs"],
|
"format": ["esm", "cjs"],
|
||||||
"external": ["unist-util-visit"],
|
"external": ["unist-util-visit"]
|
||||||
"generateExportsField": true,
|
|
||||||
"assets": [
|
|
||||||
{
|
|
||||||
"glob": "packages/remark-embed/README.md",
|
|
||||||
"input": ".",
|
|
||||||
"output": "."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
7
packages/remark-wiki-link/CHANGELOG.md
Normal file
7
packages/remark-wiki-link/CHANGELOG.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# @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.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@portaljs/remark-wiki-link",
|
"name": "@portaljs/remark-wiki-link",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "Parse and render wiki-style links in markdown especially Obsidian style links.",
|
"description": "Parse and render wiki-style links in markdown especially Obsidian style links.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -23,6 +23,9 @@
|
|||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"mdast-util-to-markdown": "^1.5.0",
|
"mdast-util-to-markdown": "^1.5.0",
|
||||||
"mdast-util-wiki-link": "^0.0.2",
|
"mdast-util-wiki-link": "^0.0.2",
|
||||||
|
|||||||
@@ -29,15 +29,7 @@
|
|||||||
"tsConfig": "packages/remark-wiki-link/tsconfig.lib.json",
|
"tsConfig": "packages/remark-wiki-link/tsconfig.lib.json",
|
||||||
"project": "packages/remark-wiki-link/package.json",
|
"project": "packages/remark-wiki-link/package.json",
|
||||||
"format": ["esm", "cjs"],
|
"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": "."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user