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

@marko/compiler

Package Overview
Dependencies
Maintainers
5
Versions
315
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@marko/compiler - npm Package Compare versions

Comparing version 5.0.0-next.31 to 5.0.0-next.32

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [5.0.0-next.32](https://github.com/marko-js/marko/tree/master/packages/compiler/compare/v5.0.0-next.31...v5.0.0-next.32) (2020-07-31)
### Bug Fixes
* **compiler:** regression with sourcemaps ([bb818c8](https://github.com/marko-js/marko/tree/master/packages/compiler/commit/bb818c8423e1d1cc4528c951b08ddab1579f25a9))
# [5.0.0-next.31](https://github.com/marko-js/marko/tree/master/packages/compiler/compare/v5.0.0-next.30...v5.0.0-next.31) (2020-07-31)

@@ -8,0 +19,0 @@

2

dist/babel-plugin/util/pos-to-loc.js

@@ -51,5 +51,5 @@ "use strict";exports.__esModule = true;exports.getLocRange = getLocRange;const LINE_POS_CACHE = new WeakMap();

line: line + 1,
column: pos - linePos - (line === 0 ? 0 : 1) };
column: pos === linePos ? 0 : pos - linePos - (line === 0 ? 0 : 1) };
}
//# sourceMappingURL=pos-to-loc.js.map
{
"name": "@marko/compiler",
"description": "Marko template to JS compiler.",
"version": "5.0.0-next.31",
"version": "5.0.0-next.32",
"author": "Dylan Piercey <dpiercey@ebay.com>",

@@ -17,3 +17,3 @@ "bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",

"@marko/babel-utils": "^5.0.0-next.31",
"@marko/translator-default": "^5.0.0-next.31",
"@marko/translator-default": "^5.0.0-next.32",
"complain": "^1.6.0",

@@ -29,3 +29,3 @@ "he": "^1.1.0",

"devDependencies": {
"marko": "^5.0.0-next.31"
"marko": "^5.0.0-next.32"
},

@@ -59,3 +59,3 @@ "files": [

},
"gitHead": "4909b6ff0a23e7397cfc803c5b95316a09db63e8"
"gitHead": "e662e843be48152d72d3e8ac4f3705fbf25c9468"
}

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