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

create-ol-app

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-ol-app - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

12

package.json
{
"name": "create-ol-app",
"version": "1.1.0",
"version": "1.2.0",
"description": "Initialize a new OpenLayers application",

@@ -25,5 +25,5 @@ "main": "src/main.js",

"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-openlayers": "^16.0.1",
"mocha": "^9.1.2"
"eslint": "^8.57.1",
"eslint-config-openlayers": "^19.0.0",
"mocha": "^10.8.2"
},

@@ -36,5 +36,5 @@ "eslintConfig": {

"degit": "^2.8.4",
"fs-extra": "^10.0.0",
"validate-npm-package-name": "^3.0.0"
"fs-extra": "^11.2.0",
"validate-npm-package-name": "^6.0.0"
}
}

@@ -16,3 +16,3 @@ #!/usr/bin/env node

const {projectDir, options} = parseArgs(args);
const packageName = path.basename(projectDir);
const packageName = path.basename(projectDir).toLowerCase();

@@ -28,3 +28,3 @@ const {

process.stderr.write(
`\nPackage name rules:\n${issues.map((issue) => '\n * ' + issue)}\n`
`\nPackage name rules:\n${issues.map((issue) => '\n * ' + issue)}\n`,
);

@@ -51,3 +51,3 @@ throw new Error(`Invalid package name: ${packageName}`);

.default(templates[0])
.choices(templates)
.choices(templates),
)

@@ -96,4 +96,4 @@ .usage('[project-directory] [options]')

main(process.argv).catch((error) =>
process.stderr.write(`\n${error.message}\n`, () => process.exit(1))
process.stderr.write(`\n${error.message}\n`, () => process.exit(1)),
);
}
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