New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

snap-shot-core

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snap-shot-core - npm Package Compare versions

Comparing version

to
1.2.2

15

package.json
{
"name": "snap-shot-core",
"description": "Save / load named snapshots, useful for tests",
"version": "1.2.1",
"version": "1.2.2",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",

@@ -14,2 +14,4 @@ "bugs": "https://github.com/bahmutov/snap-shot-core/issues",

"npm test",
"echo Running unit tests again to check file load",
"npm test",
"npm run ban"

@@ -63,3 +65,10 @@ ],

"release": {
"analyzeCommits": "simple-commit-message"
"analyzeCommits": "simple-commit-message",
"verifyRelease": {
"path": "dont-crack",
"test-against": [
"https://github.com/bahmutov/snap-shot",
"https://github.com/bahmutov/schema-shot"
]
}
},

@@ -70,2 +79,3 @@ "devDependencies": {

"deps-ok": "1.2.0",
"dont-crack": "1.1.1",
"git-issues": "1.3.1",

@@ -83,2 +93,3 @@ "license-checker": "8.0.4",

"debug": "2.6.1",
"escape-quotes": "1.0.2",
"lazy-ass": "1.5.0",

@@ -85,0 +96,0 @@ "mkdirp": "0.5.1"

@@ -109,2 +109,6 @@ # snap-shot-core

## Debugging
Run the code with `DEBUG=snap-shot-core` option to see more log messages.
### Small print

@@ -111,0 +115,0 @@

@@ -10,2 +10,3 @@ 'use strict'

const vm = require('vm')
const escapeQuotes = require('escape-quotes')

@@ -33,2 +34,5 @@ const cwd = process.cwd()

console.error(e)
if (e instanceof SyntaxError) {
throw e
}
return {}

@@ -73,3 +77,3 @@ }

const serialized = JSON.stringify(value, null, 2)
s += `exports['${testName}'] = ${serialized}\n\n`
s += `exports['${escapeQuotes(testName)}'] = ${serialized}\n\n`
})

@@ -76,0 +80,0 @@ fs.writeFileSync(filename, s, 'utf8')

@@ -46,2 +46,3 @@ 'use strict'

const key = formKey(specName, index)
debug('key "%s"', key)
if (!(key in snapshots)) {

@@ -48,0 +49,0 @@ return