New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@docusaurus/types

Package Overview
Dependencies
Maintainers
6
Versions
1876
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@docusaurus/types - npm Package Compare versions

Comparing version 2.0.0-alpha.a406a3c9a to 2.0.0-alpha.a8ee7fd3e

README.md

6

package.json
{
"name": "@docusaurus/types",
"version": "2.0.0-alpha.a406a3c9a",
"description": "Common used typings for Docusaurus packages",
"version": "2.0.0-alpha.a8ee7fd3e",
"description": "Common types for Docusaurus packages.",
"main": "./src/index.js",

@@ -22,3 +22,3 @@ "types": "./src/index.d.ts",

},
"gitHead": "59f21d15a0678c652909ce332218f3d38b86ee81"
"gitHead": "4223528fde82b750c89d4ba9e52cb782c2fe058e"
}

@@ -10,3 +10,3 @@ /**

// eslint-disable-next-line import/no-extraneous-dependencies
import {Loader, Configuration} from 'webpack';
import {Loader, Configuration, Stats} from 'webpack';
import {Command} from 'commander';

@@ -182,2 +182,9 @@ import {ParsedUrlQueryInput} from 'querystring';

/**
* Same as `Props` but also has webpack stats appended.
*/
export interface PropsPostBuild extends Props {
stats: Stats.ToJsonOutput;
}
export interface PluginContentLoadedActions {

@@ -211,3 +218,3 @@ addRoute(config: RouteConfig): void;

routesLoaded?(routes: RouteConfig[]): void; // TODO remove soon, deprecated (alpha-60)
postBuild?(props: Props): void;
postBuild?(props: PropsPostBuild): void;
postStart?(props: Props): void;

@@ -230,2 +237,3 @@ configureWebpack?(

getSwizzleComponentList?(): string[];
// TODO before/afterDevServer implementation

@@ -232,0 +240,0 @@ // translations

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc