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

smartclient-eval

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smartclient-eval - npm Package Compare versions

Comparing version 0.9.11 to 0.9.12

2

package.json

@@ -37,3 +37,3 @@ {

},
"version": "0.9.11"
"version": "0.9.12"
}

@@ -833,9 +833,10 @@ #!/usr/bin/env node

static _createReactLoader(branch, loaderPath, wrappersDir) {
// install SC React wrappers under React app source dir so they're loaded as React code
const wrappersInstallDir = path.resolve("..", "..", Const.REACT_APP_SRC_DIR,
"isomorphic", "react");
fs.removeSync(wrappersInstallDir);
fs.ensureDirSync(wrappersInstallDir);
fs.copySync(wrappersDir, wrappersInstallDir);
wrappersDir = wrappersInstallDir;
// if not an internal project, install wrapper files under React app source dir
if (!path.resolve(wrappersDir).match(/isomorphic\/react\/[^\/]+\/isomorphic/)) {
const wrappersInstallDir = path.resolve("..", "..", Const.REACT_APP_SRC_DIR,
"isomorphic", "react");
fs.removeSync(wrappersInstallDir), fs.ensureDirSync(wrappersInstallDir);
fs.copySync(wrappersDir, wrappersInstallDir, {dereference: true});
wrappersDir = wrappersInstallDir;
}

@@ -842,0 +843,0 @@ const dependentPath = path.resolve("..", ".."),

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