Socket
Socket
Sign inDemoInstall

@geoapps/libbuilder

Package Overview
Dependencies
271
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.0 to 0.3.1

4

CHANGELOG.md
## Changelog
### 0.3.1 (2019-03-25)
- Scoped package name is converted properly to base file name.
### 0.3.0 (2019-02-19)

@@ -4,0 +8,0 @@

5

lib/getRollupConfig.js

@@ -102,2 +102,3 @@ const path = require('path');

const outputDirPath = path.resolve(baseDirPath, outputDirName);
const baseFileName = packageName.replace('@', '').replace('/', '-');

@@ -134,3 +135,3 @@ config.inputDirPath = inputDirPath;

inputFilePath = path.resolve(inputDirPath, `${inputFileName}${inputEsExtensionPrefix}.js`);
outputFilePath = path.resolve(outputDirPath, `${packageName}${outputEsExtensionPrefix}.js`);
outputFilePath = path.resolve(outputDirPath, `${baseFileName}${outputEsExtensionPrefix}.js`);
external = []

@@ -146,3 +147,3 @@ .concat(Object.keys(packageDependencies))

outputDirPath,
`${packageName}${outputUmdExtensionPrefix}${format === 'umd:prod' ? '.min' : ''}.js`
`${baseFileName}${outputUmdExtensionPrefix}${format === 'umd:prod' ? '.min' : ''}.js`
);

@@ -149,0 +150,0 @@ external = Object.keys(globals);

{
"name": "@geoapps/libbuilder",
"version": "0.3.0",
"version": "0.3.1",
"description": "Build application ES compatible library with Rollup",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc