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

@a-la/markers

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@a-la/markers - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

12

build/index.js

@@ -33,9 +33,7 @@ const { makeMarkers, makeCutRule, makePasteRule } = require('restream');

cutEscapes, cutRegexes, cutRegexGroups,
] = mr
.map(makeCutRule)
] = mr.map(makeCutRule)
const [
pasteComments, pasteInlineComments, pasteStrings, pasteLiterals,
pasteEscapes, pasteRegexes, pasteRegexGroups,
] = mr
.map(makePasteRule)
] = mr.map(m => makePasteRule(m))

@@ -75,2 +73,4 @@ const allRules = [

/**

@@ -80,1 +80,5 @@ * @suppress {nonStandardJsDocs}

*/
module.exports.inlineCommentsRe = inlineCommentsRe
module.exports.commentsRe = commentsRe

@@ -0,1 +1,12 @@

## 24 April 2019
### [1.2.0](https://github.com/a-la/markers/compare/v1.1.0...v1.2.0)
- [api] Export `inlineCommentsRe` and `commentsRe` regexes.
- [fix] Apply a patch to remove type warning:
```js
mr.map(makePasteRule) // warning
mr.map(m => makePasteRule(m)) // fix
```
## 22 April 2019

@@ -2,0 +13,0 @@

{
"name": "@a-la/markers",
"version": "1.1.0",
"version": "1.2.0",
"description": "A set of service markers used by alamode, e.g., to cut and paste comments.",

@@ -41,6 +41,6 @@ "main": "build/index.js",

"catchment": "^3.3.0",
"documentary": "^1.24.1",
"documentary": "^1.25.0",
"eslint-config-artdeco": "1.0.1",
"yarn-s": "1.1.0",
"zoroaster": "^3.11.6"
"zoroaster": "^3.12.0"
},

@@ -47,0 +47,0 @@ "dependencies": {

@@ -33,9 +33,7 @@ import { makeMarkers, makeCutRule, makePasteRule } from 'restream'

cutEscapes, cutRegexes, cutRegexGroups,
] = mr
.map(makeCutRule)
] = mr.map(makeCutRule)
const [
pasteComments, pasteInlineComments, pasteStrings, pasteLiterals,
pasteEscapes, pasteRegexes, pasteRegexGroups,
] = mr
.map(makePasteRule)
] = mr.map(m => makePasteRule(m))

@@ -75,2 +73,4 @@ const allRules = [

export { inlineCommentsRe, commentsRe }
/**

@@ -77,0 +77,0 @@ * @suppress {nonStandardJsDocs}

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