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

ecmarkup

Package Overview
Dependencies
Maintainers
1
Versions
192
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ecmarkup - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

13

lib/Spec.js
'use strict';
const path = require('path');
const fs = require('fs');

@@ -318,7 +319,7 @@ const Path = require('path');

if (this.opts.status === 'draft') {
copyright = fs.readFileSync('boilerplate/draft-copyright.html', 'utf8');
copyright = getBoilerplate('draft-copyright');
} else if (this.opts.status === 'standard') {
copyright = fs.readFileSync('boilerplate/standard-copyright.html', 'utf8');
copyright = getBoilerplate('standard-copyright');
} else {
copyright = fs.readFileSync('boilerplate/proposal-copyright.html', 'utf8');
copyright = getBoilerplate('proposal-copyright');
}

@@ -332,3 +333,3 @@

const softwareLicense = fs.readFileSync('boilerplate/software-license.html', 'utf8');
const softwareLicense = getBoilerplate('software-license');

@@ -503,1 +504,5 @@ let copyrightClause = this.doc.querySelector('.copyright-and-software-license');

}
function getBoilerplate(file) {
return fs.readFileSync(Path.join(__dirname, '../boilerplate', file + '.html'), 'utf8');
}
{
"name": "ecmarkup",
"version": "2.5.0",
"version": "2.5.1",
"description": "Custom element definitions and core utilities for markup that specifies ECMAScript and related technologies.",

@@ -5,0 +5,0 @@ "main": "lib/ecmarkup.js",

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