Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

remarkdown

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remarkdown - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

demo/monokai.css

9

demo/app.js
import React from 'react';
import ReactDOM from 'react-dom';
import Markdown from '../src';
import Markdown from '../dist';
import './monokai.css';
const LOREM =`

@@ -14,2 +16,5 @@ # heading1

1. qwew
1. qwew
1. qwew
1. qwew
1. qwew

@@ -20,2 +25,4 @@ 1. qwew

- li
- sub li
- sub sub li
- li

@@ -22,0 +29,0 @@ - li

{
"name": "remarkdown",
"version": "0.1.1",
"version": "0.1.2",
"description": "A React Component to create markdown easily.",
"main": "src/index",
"main": "build/index.js",
"keywords": [
"markdown",
"react"
],
"bugs": {
"url": "https://github.com/evilucifero/remarkdown/issues"
},
"homepage": "https://github.com/evilucifero/remarkdown",
"dependencies": {

@@ -11,3 +19,8 @@ "highlight.js": "^9.2.0",

},
"repository": {
"type": "git",
"url": "https://github.com/evilucifero/remarkdown.git"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",

@@ -25,3 +38,3 @@ "babel-loader": "^6.2.4",

"start": "./node_modules/.bin/webpack-dev-server --hot --inline",
"build": "./node_modules/.bin/webpack"
"build": "./node_modules/.bin/babel src --out-dir dist"
},

@@ -28,0 +41,0 @@ "author": "evilucifero",

2

src/Markdown.js

@@ -5,4 +5,2 @@ import React, { PropTypes } from 'react';

import './Markdown.css';
const highlight = (code, lang) => {

@@ -9,0 +7,0 @@ if (lang) {

@@ -16,3 +16,2 @@ 'use strict';

entry: {
bundle: [path.resolve(__dirname, 'src/index.js')],
app: path.resolve(__dirname, 'demo/app.js'),

@@ -23,3 +22,3 @@ },

publicPath: '/',
filename: '[name].js',
filename: 'app.js',
},

@@ -42,3 +41,3 @@ module: {

test: /\.css$/,
include: path.resolve(__dirname, 'src'),
include: path.resolve(__dirname, 'demo'),
loader: 'style!css',

@@ -45,0 +44,0 @@ }

Sorry, the diff of this file is not supported yet

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