Compare commits

..

4 Commits

Author SHA1 Message Date
github-actions[bot]
ccdd4d077e Version Packages 2021-07-11 17:02:49 +03:00
Benny Powers
a5661b85c2 chore: update dependencies 2021-07-11 17:01:27 +03:00
github-actions[bot]
99b12c7c9e Version Packages 2021-07-11 16:03:49 +03:00
Benny Powers
61bb700c3e fix(plugins-manager): dist types 2021-07-11 16:00:10 +03:00
14 changed files with 61 additions and 17 deletions

View File

@@ -46,7 +46,7 @@
}, },
"devDependencies": { "devDependencies": {
"@changesets/cli": "^2.12.0", "@changesets/cli": "^2.12.0",
"@custom-elements-manifest/analyzer": "^0.4.11", "@custom-elements-manifest/analyzer": "^0.4.12",
"@open-wc/testing": "^3.0.0-next.1", "@open-wc/testing": "^3.0.0-next.1",
"@rollup/plugin-commonjs": "^17.0.0", "@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0", "@rollup/plugin-json": "^4.1.0",

View File

@@ -1,5 +1,11 @@
# @rocket/blog # @rocket/blog
## 0.3.1
### Patch Changes
- a5661b8: Updates dependencies
## 0.3.0 ## 0.3.0
### Minor Changes ### Minor Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@rocket/blog", "name": "@rocket/blog",
"version": "0.3.0", "version": "0.3.1",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
@@ -38,6 +38,6 @@
"testing" "testing"
], ],
"dependencies": { "dependencies": {
"plugins-manager": "^0.2.2" "plugins-manager": "^0.2.4"
} }
} }

View File

@@ -1,5 +1,11 @@
# @rocket/cli # @rocket/cli
## 0.9.8
### Patch Changes
- a5661b8: Updates dependencies
## 0.9.7 ## 0.9.7
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@rocket/cli", "name": "@rocket/cli",
"version": "0.9.7", "version": "0.9.8",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
@@ -72,7 +72,7 @@
"command-line-usage": "^6.1.1", "command-line-usage": "^6.1.1",
"fs-extra": "^9.0.1", "fs-extra": "^9.0.1",
"micromatch": "^4.0.2", "micromatch": "^4.0.2",
"plugins-manager": "^0.2.3", "plugins-manager": "^0.2.4",
"slash": "^3.0.0", "slash": "^3.0.0",
"utf8": "^3.0.0", "utf8": "^3.0.0",
"workbox-window": "^6.1.5" "workbox-window": "^6.1.5"

View File

@@ -1,5 +1,11 @@
# Change Log # Change Log
## 0.8.2
### Patch Changes
- a5661b8: Updates dependencies
## 0.8.1 ## 0.8.1
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@mdjs/core", "name": "@mdjs/core",
"version": "0.8.1", "version": "0.8.2",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
@@ -49,7 +49,7 @@
"@types/unist": "^2.0.3", "@types/unist": "^2.0.3",
"es-module-lexer": "^0.3.26", "es-module-lexer": "^0.3.26",
"github-markdown-css": "^4.0.0", "github-markdown-css": "^4.0.0",
"plugins-manager": "^0.2.3", "plugins-manager": "^0.2.4",
"rehype-autolink-headings": "^5.0.1", "rehype-autolink-headings": "^5.0.1",
"rehype-prism-template": "^0.4.1", "rehype-prism-template": "^0.4.1",
"rehype-raw": "^5.0.0", "rehype-raw": "^5.0.0",

View File

@@ -1,5 +1,11 @@
# plugins-manager # plugins-manager
## 0.2.4
### Patch Changes
- 61bb700: Fix types
## 0.2.3 ## 0.2.3
### Patch Changes ### Patch Changes

View File

@@ -1,4 +1,6 @@
/** @typedef {import('./types/main').MetaPlugin} MetaPlugin */ /** @typedef {import('./types/main').MetaPlugin} MetaPlugin */
/** @typedef {import('./types/main').AddPluginFn} AddPluginFn */
/** @typedef {import('./types/main').AddPluginType} AddPluginType */
export { addPlugin } from './src/addPlugin.js'; export { addPlugin } from './src/addPlugin.js';
export { adjustPluginOptions } from './src/adjustPluginOptions.js'; export { adjustPluginOptions } from './src/adjustPluginOptions.js';

View File

@@ -1,6 +1,6 @@
{ {
"name": "plugins-manager", "name": "plugins-manager",
"version": "0.2.3", "version": "0.2.4",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@@ -2,10 +2,10 @@ type AnyFn = (...args: any[]) => any;
export interface MetaPlugin<F = AnyFn> { export interface MetaPlugin<F = AnyFn> {
name: string; name: string;
plugin: F extends (options?: infer O) => P ? F : any; plugin: F extends (options?: infer O) => unknown ? F : any;
options?: /* prettier-ignore */ ( options?: /* prettier-ignore */ (
F extends (eleventyConfig: any, options?: infer O) => void ? O F extends (eleventyConfig: any, options?: infer O) => void ? O
: F extends (options: infer O) => P ? O : F extends (options: infer O) => unknown ? O
: any : any
); );
} }

View File

@@ -1,5 +1,11 @@
# @rocket/search # @rocket/search
## 0.4.1
### Patch Changes
- a5661b8: Updates dependencies
## 0.4.0 ## 0.4.0
### Minor Changes ### Minor Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@rocket/search", "name": "@rocket/search",
"version": "0.4.0", "version": "0.4.1",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
@@ -48,7 +48,7 @@
"@open-wc/scoped-elements": "^2.0.0-next.3", "@open-wc/scoped-elements": "^2.0.0-next.3",
"chalk": "^4.0.0", "chalk": "^4.0.0",
"minisearch": "^3.0.2", "minisearch": "^3.0.2",
"plugins-manager": "^0.2.2", "plugins-manager": "^0.2.4",
"sax-wasm": "^2.0.0" "sax-wasm": "^2.0.0"
}, },
"customElements": "custom-elements.json" "customElements": "custom-elements.json"

View File

@@ -1080,10 +1080,10 @@
human-id "^1.0.2" human-id "^1.0.2"
prettier "^1.18.2" prettier "^1.18.2"
"@custom-elements-manifest/analyzer@^0.4.11": "@custom-elements-manifest/analyzer@^0.4.12":
version "0.4.11" version "0.4.12"
resolved "https://registry.yarnpkg.com/@custom-elements-manifest/analyzer/-/analyzer-0.4.11.tgz#40047abe6f7a8ff3d2c83d73e1647d059d71592c" resolved "https://registry.yarnpkg.com/@custom-elements-manifest/analyzer/-/analyzer-0.4.12.tgz#55dd21bf00faa6cc33a1ba248de6b9fcb804ef6f"
integrity sha512-Uymdmoz8yQqSSLHgnxi2zIRZmNhr/845gDBKt5tl9JthegaTM1G8i9CDdHbQxs0sPMRjAVA5UOdpAe3ZS6itsA== integrity sha512-AvHMmiC5TpYBYmjdZ/5OKhsTQbJvb1A7jkTb3/DUuVZrRpvNuVz6/fhyQ0giF5VFwmPWgBdMdaA2qNDQlK0lIg==
dependencies: dependencies:
"@web/config-loader" "^0.1.3" "@web/config-loader" "^0.1.3"
chokidar "^3.5.2" chokidar "^3.5.2"
@@ -1091,7 +1091,7 @@
comment-parser "^1.1.5" comment-parser "^1.1.5"
custom-elements-manifest "^1.0.0" custom-elements-manifest "^1.0.0"
debounce "^1.2.1" debounce "^1.2.1"
globby "^11.0.1" globby "^11.0.4"
typescript "^4.3.2" typescript "^4.3.2"
"@custom-elements-manifest/to-markdown@^0.0.9": "@custom-elements-manifest/to-markdown@^0.0.9":
@@ -4512,6 +4512,18 @@ globby@^11.0.0, globby@^11.0.1:
merge2 "^1.3.0" merge2 "^1.3.0"
slash "^3.0.0" slash "^3.0.0"
globby@^11.0.4:
version "11.0.4"
resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"
integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==
dependencies:
array-union "^2.1.0"
dir-glob "^3.0.1"
fast-glob "^3.1.1"
ignore "^5.1.4"
merge2 "^1.3.0"
slash "^3.0.0"
globby@^5.0.0: globby@^5.0.0:
version "5.0.0" version "5.0.0"
resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"