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

@after-work.js/transform

Package Overview
Dependencies
Maintainers
2
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@after-work.js/transform - npm Package Compare versions

Comparing version 5.0.0-beta.2 to 5.0.0-beta.3

LICENSE

11

package.json
{
"name": "@after-work.js/transform",
"version": "5.0.0-beta.2",
"version": "5.0.0-beta.3",
"publishConfig": {

@@ -10,3 +10,3 @@ "access": "public"

"scripts": {
"lint": "eslint src test"
"lint": "eslint src"
},

@@ -24,4 +24,4 @@ "repository": {

"dependencies": {
"@after-work.js/utils": "^5.0.0-beta.2",
"find-cache-dir": "1.0.0",
"@after-work.js/utils": "^5.0.0-beta.3",
"find-cache-dir": "2.0.0",
"import-cwd": "2.1.0"

@@ -31,3 +31,4 @@ },

"/src"
]
],
"gitHead": "dd241d233da21e7f0e397c46e5357b66cf6363a9"
}

@@ -14,2 +14,3 @@ /* eslint class-methods-use-this: 0, no-restricted-syntax: 0, guard-for-in: 0, no-await-in-loop: 0, max-len: 0 */

}
getCacheFilename(filename) {

@@ -19,2 +20,3 @@ const hash = crypto.createHash('md5').update(filename).digest('hex');

}
getCacheHash(filename, options) {

@@ -27,2 +29,3 @@ const data = JSON.stringify({

}
getStringifiedValue(filename) {

@@ -33,2 +36,3 @@ const value = this.transform.get(filename);

}
setSync(filename, transformItem, options) {

@@ -48,2 +52,3 @@ const {

}
getSync(filename, options = {}) {

@@ -78,2 +83,3 @@ const {

}
safeLoadCacheSync(filename) {

@@ -88,2 +94,3 @@ try {

}
safeSaveCacheSync(filename) {

@@ -90,0 +97,0 @@ try {

@@ -11,5 +11,5 @@ /* eslint global-require: 0, import/no-dynamic-require: 0, object-curly-newline: 0, class-methods-use-this: 0, max-len: 0 */

const addCoverage = argv.instrument.testExclude.shouldInstrument(filename);
const plugins = addCoverage ?
[[babelPluginIstanbul, {}]] :
[];
const plugins = addCoverage
? [[babelPluginIstanbul, {}]]
: [];
const sourceMaps = 'both';

@@ -22,3 +22,3 @@ const retainLines = true;

const { babel: { typescript } } = argv;
const { transform: { typescript: { compilerOptions, babelOptions } } } = argv;
const { transform: { typescript: { compilerOptions = {}, babelOptions = {} } = {} } = {} } = argv;
const fileName = filePath;

@@ -25,0 +25,0 @@ compilerOptions.sourceRoot = sourceRoot;

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