Socket
Socket
Sign inDemoInstall

riot-compiler

Package Overview
Dependencies
8
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.5.0 to 3.5.1

3

CHANGELOG.md
# Compiler Changes
### v3.5.1
- Fix try importing `@babel/core` first and then fallback to `babel-core` for the `es6` parser
### v3.5.0

@@ -4,0 +7,0 @@ - Add support for Babel 7

4

dist/es6.compiler.js
/**
* Compiler for riot custom tags
* @version v3.5.0
* @version v3.5.1
*/

@@ -850,3 +850,3 @@

var version = 'v3.5.0'
var version = 'v3.5.1'

@@ -853,0 +853,0 @@ export default {

@@ -275,3 +275,3 @@

* Compiler for riot custom tags
* @version v3.5.0
* @version v3.5.1
*/

@@ -854,3 +854,3 @@ var compile = (function () {

js: compileJS,
version: 'v3.5.0'
version: 'v3.5.1'
}

@@ -857,0 +857,0 @@ return compile

/**
* The riot-compiler v3.5.0
* The riot-compiler v3.5.1
*
* @module compiler
* @version v3.5.0
* @version v3.5.1
* @license MIT

@@ -1014,3 +1014,3 @@ * @copyright Muut Inc. + contributors

parsers: parsers,
version: 'v3.5.0'
version: 'v3.5.1'
}

@@ -14,5 +14,6 @@ /*

try {
return require('@babel/core')
} catch (_) {
console.log('Fallback to babel-core. You might want to upgrade to @babel/core soon.')
return require('babel-core')
} catch (_) {
return require('@babel/core')
}

@@ -19,0 +20,0 @@ }

{
"name": "riot-compiler",
"version": "3.5.0",
"version": "3.5.1",
"description": "Compiler for riot .tag files",

@@ -5,0 +5,0 @@ "main": "lib/compiler.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc