Socket
Socket
Sign inDemoInstall

melody-compiler

Package Overview
Dependencies
Maintainers
3
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

melody-compiler - npm Package Compare versions

Comparing version 1.2.0-21.2 to 1.2.0-alpha.3

LICENSE

14

package.json
{
"name": "melody-compiler",
"version": "1.2.0-21.2",
"version": "1.2.0-alpha.3+617386e",
"description": "",

@@ -13,7 +13,7 @@ "main": "./lib/index.js",

"dependencies": {
"babel-generator": "6.10.x",
"babel-generator": "^6.10.0",
"babel-template": "^6.8.0",
"babel-types": "^6.8.1",
"lodash": "^4.12.0",
"melody-code-frame": "1.2.0-21.2",
"melody-code-frame": "1.2.0-alpha.3+617386e",
"random-seed": "^0.3.0"

@@ -29,6 +29,6 @@ },

"devDependencies": {
"melody-extension-core": "1.2.0-21.2",
"melody-plugin-idom": "1.2.0-21.2",
"rollup-plugin-babel": "^2.6.1"
}
"melody-extension-core": "1.2.0-alpha.3+617386e",
"melody-plugin-idom": "1.2.0-alpha.3+617386e"
},
"gitHead": "617386e7af1af3c08f469e1c2348fa5e5fdfea05"
}

@@ -26,3 +26,3 @@ /**

import * as t from 'babel-types';
import generate from 'babel-generator';
import { CodeGenerator } from 'babel-generator';

@@ -126,3 +126,15 @@ // workaround for https://github.com/rollup/rollup/issues/430

export function toString(jsAst, code) {
return generate(jsAst, null, code);
const g = new CodeGenerator(jsAst, {}, code);
// Babel sanitises strings to not contain complex characters
// however we need them in order to be able to render complex strings
g._generator.StringLiteral = function (node, parent) {
var raw = this.getPossibleRaw(node);
if (!this.format.minified && raw != null) {
this.token(raw);
return;
}
return this.token(JSON.stringify(node.value));
};
return g.generate();
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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