Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: uiwjs/react-markdown-preview
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.3.1
Choose a base ref
...
head repository: uiwjs/react-markdown-preview
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.3.2
Choose a head ref
  • 5 commits
  • 2 files changed
  • 3 contributors

Commits on Sep 9, 2021

  1. chore(deps): update dependency @uiw/react-shields to v1.1.2 (#119)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Sep 9, 2021
    Copy the full SHA
    a3b9afb View commit details
  2. chore(deps): update dependency @uiw/react-github-corners to v1.5.3 (#120

    )
    
    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Sep 9, 2021
    Copy the full SHA
    a8035d3 View commit details
  3. chore(deps): update dependency tsbb to v3.1.5 (#118)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Sep 9, 2021
    Copy the full SHA
    ea173c0 View commit details
  4. Copy the full SHA
    0498992 View commit details
  5. released v3.3.2

    jaywcjlove committed Sep 9, 2021
    Copy the full SHA
    4bcf53e View commit details
Showing with 6 additions and 6 deletions.
  1. +4 −4 package.json
  2. +2 −2 website/App.tsx
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uiw/react-markdown-preview",
"version": "3.3.1",
"version": "3.3.2",
"description": "React component preview markdown text in web browser. The minimal amount of CSS to replicate the GitHub Markdown style.",
"homepage": "https://uiwjs.github.io/react-markdown-preview",
"main": "lib/index.js",
@@ -54,14 +54,14 @@
"@types/react": "17.0.20",
"@types/react-dom": "17.0.9",
"@uiw/react-codesandbox": "1.1.0",
"@uiw/react-github-corners": "1.5.1",
"@uiw/react-shields": "1.1.1",
"@uiw/react-github-corners": "1.5.3",
"@uiw/react-shields": "1.1.2",
"@uiw/reset.css": "1.0.5",
"compile-less-cli": "1.8.8",
"kkt": "6.11.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"tsbb": "3.1.4"
"tsbb": "3.1.5"
},
"eslintConfig": {
"extends": "react-app"
4 changes: 2 additions & 2 deletions website/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import GitHubCorners from '@uiw/react-github-corners';
import Github from '@uiw/react-shields/lib/esm/github';
import Npm from '@uiw/react-shields/lib/esm/npm';
import Github from '@uiw/react-shields/esm/github';
import Npm from '@uiw/react-shields/esm/npm';
import logo from './logo.svg';
import './App.css';
import MarkdownPreview, { MarkdownPreviewRef } from '../';