riot-compiler
Advanced tools
Comparing version 3.5.1 to 3.5.2
# Compiler Changes | ||
### v3.5.2 | ||
- Fix es6 dynamic imports https://github.com/riot/riot/issues/2641 | ||
### v3.5.1 | ||
@@ -4,0 +7,0 @@ - Fix try importing `@babel/core` first and then fallback to `babel-core` for the `es6` parser |
/** | ||
* Compiler for riot custom tags | ||
* @version v3.5.1 | ||
* @version v3.5.2 | ||
*/ | ||
@@ -304,3 +304,3 @@ | ||
var IMPORT_STATEMENT = /^\s*import(?!\w)(?:(?:\s|[^\s'"])*)['|"].*\n?/gm | ||
var IMPORT_STATEMENT = /^\s*import(?!\w|(\s)?\()(?:(?:\s|[^\s'"])*)['|"].*\n?/gm | ||
@@ -851,3 +851,3 @@ var TRIM_TRAIL = /[ \t]+$/gm | ||
var version = 'v3.5.1' | ||
var version = 'v3.5.2' | ||
@@ -854,0 +854,0 @@ export default { |
@@ -275,3 +275,3 @@ | ||
* Compiler for riot custom tags | ||
* @version v3.5.1 | ||
* @version v3.5.2 | ||
*/ | ||
@@ -303,3 +303,3 @@ var compile = (function () { | ||
var IMPORT_STATEMENT = /^\s*import(?!\w)(?:(?:\s|[^\s'"])*)['|"].*\n?/gm | ||
var IMPORT_STATEMENT = /^\s*import(?!\w|(\s)?\()(?:(?:\s|[^\s'"])*)['|"].*\n?/gm | ||
@@ -855,3 +855,3 @@ var TRIM_TRAIL = /[ \t]+$/gm | ||
js: compileJS, | ||
version: 'v3.5.1' | ||
version: 'v3.5.2' | ||
} | ||
@@ -858,0 +858,0 @@ return compile |
/** | ||
* The riot-compiler v3.5.1 | ||
* The riot-compiler v3.5.2 | ||
* | ||
* @module compiler | ||
* @version v3.5.1 | ||
* @version v3.5.2 | ||
* @license MIT | ||
@@ -109,3 +109,3 @@ * @copyright Muut Inc. + contributors | ||
*/ | ||
var IMPORT_STATEMENT = /^\s*import(?!\w)(?:(?:\s|[^\s'"])*)['|"].*\n?/gm | ||
var IMPORT_STATEMENT = /^\s*import(?!\w|(\s)?\()(?:(?:\s|[^\s'"])*)['|"].*\n?/gm | ||
@@ -1015,3 +1015,3 @@ /** | ||
parsers: parsers, | ||
version: 'v3.5.1' | ||
version: 'v3.5.2' | ||
} |
{ | ||
"name": "riot-compiler", | ||
"version": "3.5.1", | ||
"version": "3.5.2", | ||
"description": "Compiler for riot .tag files", | ||
@@ -5,0 +5,0 @@ "main": "lib/compiler.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
139471