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

mincer-jsx

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mincer-jsx - npm Package Compare versions

Comparing version 0.0.3 to 0.0.5

.travis.yml

8

package.json
{
"name": "mincer-jsx",
"version": "0.0.3",
"version": "0.0.5",
"description": "JSX engine for Mincer",

@@ -10,9 +10,9 @@ "main": "index.js",

"devDependencies": {
"mincer": "~1.0"
"mincer": "~1.2"
},
"peerDependencies": {
"mincer": "~1.0"
"mincer": "~1.2"
},
"dependencies": {
"react-tools": "~0.10.0"
"react-tools": "~0.12"
},

@@ -19,0 +19,0 @@ "repository": {

@@ -17,3 +17,3 @@ # Mincer JSX

"dependencies": {
"mincer-jsx": "0.0.3"
"mincer-jsx": "0.0.5"
}

@@ -38,3 +38,3 @@ ```

$ npm install --development
$ make test
$ npm test
```

@@ -41,0 +41,0 @@

@@ -1,2 +0,9 @@

/** @jsx React.DOM */
React.renderComponent(<div>Hello, world!</div>, document.body);
var views = {
HelloWorld: React.createClass({
render: function() {
return <div>Hello, world!</div>;
}
})
}
React.renderComponent(<views.HelloWorld />, document.body);

@@ -11,3 +11,3 @@ 'use strict';

if (compiledAsset.indexOf('React.DOM.div(') > 0) {
if (compiledAsset.indexOf('React.createElement("div"') > 0) {
console.log('OK');

@@ -14,0 +14,0 @@ } else {

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