generated from rdilweb/template-docusaurus-plugin
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
12,508 additions
and
10,172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,3 +103,6 @@ dist | |
# TernJS port file | ||
.tern-port | ||
build | ||
|
||
.yarn/cache | ||
.yarn/install-state.gz |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-3.1.1.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
# Changelog | ||
|
||
## v2.0.0 - 12/02/2021 | ||
|
||
Breaking changes: | ||
|
||
- `docsIntegration` and `blogIntegration` have been removed in favor of just setting `outDir` (which is a lot more flexible). | ||
- `outputDirectory` has been renamed to `outDir`. | ||
- `name` is now a required option (dictates CLI command name). | ||
- Documents now must have proper file extensions, `.md` is no longer added by default. | ||
|
||
Other changes: | ||
|
||
- Switch to yarn v3.1.1. | ||
- Updated dependencies. | ||
- Updated code style to use 4 spaces instead of 2. | ||
- Bug fix: documents with subdirectories in their paths will now automatically ensure the subdirectories are created (reported by @fill-the-fill). | ||
|
||
## v1.2.0 - 8/10/2021 | ||
|
||
- Update Axios to prevent security warnings | ||
- Require Node.js v12 | ||
- Added `outputDirectory` option to control which folder the downloaded content is put in | ||
- Updated TypeScript compiler target to reduce polyfill bloat | ||
- Update Axios to prevent security warnings | ||
- Require Node.js v12 | ||
- Added `outputDirectory` option to control which folder the downloaded content is put in | ||
- Updated TypeScript compiler target to reduce polyfill bloat | ||
|
||
## v1.1.0 - 2/3/2021 | ||
|
||
- Internal refactoring to simplify code | ||
- Add more documentation and metadata | ||
- Throw an error if both integrations are enabled at the same time | ||
- Internal refactoring to simplify code | ||
- Add more documentation and metadata | ||
- Throw an error if both integrations are enabled at the same time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,64 @@ | ||
{ | ||
"name": "docusaurus-plugin-remote-content", | ||
"version": "1.2.0", | ||
"description": "A Docusaurus v2 plugin that allows you to fetch content from remote sources!", | ||
"main": "build/index.js", | ||
"repository": "https://github.com/rdilweb/docusaurus-plugin-remote-content.git", | ||
"author": "Reece Dunham <me@rdil.rocks>", | ||
"license": "MIT", | ||
"types": "build/index.d.ts", | ||
"scripts": { | ||
"build": "tsc", | ||
"prettier": "prettier --write **/*.{js,jsx,ts,tsx,md,yml,json}" | ||
}, | ||
"prettier": { | ||
"semi": false | ||
}, | ||
"devDependencies": { | ||
"@docusaurus/types": "^2.0.0-beta.6", | ||
"@types/react": "^17.0.0", | ||
"@types/react-dom": "^17.0.0", | ||
"@types/react-helmet": "^6.1.0", | ||
"@types/rimraf": "^3.0.0", | ||
"commander": "^7.0.0", | ||
"prettier": "^2.2.1", | ||
"typescript": "^4.4.2" | ||
}, | ||
"peerDependencies": { | ||
"@docusaurus/core": "2.x" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/rdilweb/docusaurus-plugin-remote-content/issues" | ||
}, | ||
"dependencies": { | ||
"axios": "^0.21.4", | ||
"chalk": "^4.1.0", | ||
"pretty-ms": "^7.0.1", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"files": [ | ||
"build", | ||
"src", | ||
"CHANGELOG.md" | ||
], | ||
"directories": { | ||
"example": "testsite", | ||
"lib": "src" | ||
}, | ||
"homepage": "https://github.com/rdilweb/docusaurus-plugin-remote-content", | ||
"keywords": ["docusaurus", "v2", "plugin", "remote", "content"], | ||
"engines": { | ||
"node": ">=12" | ||
} | ||
"name": "docusaurus-plugin-remote-content", | ||
"version": "2.0.0", | ||
"description": "A Docusaurus v2 plugin that allows you to fetch content from remote sources!", | ||
"main": "build/index.js", | ||
"repository": "https://github.com/rdilweb/docusaurus-plugin-remote-content.git", | ||
"author": "Reece Dunham <me@rdil.rocks>", | ||
"license": "MIT", | ||
"types": "build/index.d.ts", | ||
"scripts": { | ||
"build": "tsc", | ||
"prettier": "prettier --write \"**/*.{js,ts,md,json}\"" | ||
}, | ||
"prettier": { | ||
"semi": false, | ||
"tabWidth": 4 | ||
}, | ||
"devDependencies": { | ||
"@docusaurus/types": "^2.0.0-beta.9", | ||
"@types/react": "^17.0.37", | ||
"@types/react-dom": "^17.0.11", | ||
"@types/react-helmet": "^6.1.4", | ||
"@types/rimraf": "^3.0.2", | ||
"commander": "^8.3.0", | ||
"prettier": "^2.2.1", | ||
"typescript": "^4.5.2" | ||
}, | ||
"peerDependencies": { | ||
"@docusaurus/core": "2.x" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/rdilweb/docusaurus-plugin-remote-content/issues" | ||
}, | ||
"dependencies": { | ||
"axios": "^0.21.4", | ||
"chalk": "^4.1.0", | ||
"pretty-ms": "^7.0.1", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"files": [ | ||
"build", | ||
"src", | ||
"CHANGELOG.md" | ||
], | ||
"directories": { | ||
"example": "testsite", | ||
"lib": "src" | ||
}, | ||
"homepage": "https://github.com/rdilweb/docusaurus-plugin-remote-content", | ||
"keywords": [ | ||
"docusaurus", | ||
"v2", | ||
"plugin", | ||
"remote", | ||
"content" | ||
], | ||
"engines": { | ||
"node": ">=12" | ||
}, | ||
"workspaces": [ | ||
"testsite" | ||
], | ||
"packageManager": "yarn@3.1.1" | ||
} |
Oops, something went wrong.