Socket
Socket
Sign inDemoInstall

standard

Package Overview
Dependencies
Maintainers
17
Versions
185
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

standard - npm Package Compare versions

Comparing version 8.2.0 to 8.3.0

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## 8.3.0 - 2016-09-29
The last release (`8.2.0`) added ES7 support. This release (`8.3.0`) adds ES8
support ...just 3 days later!
This release should eliminate the need to specify `babel-eslint` as a custom
parser, since `standard` can now parse ES8 (i.e. ES2017) syntax out of the box.
That means `async` and `await` will just work.
- Support ES8 (i.e. ES2017) syntax.
## 8.2.0 - 2016-09-26

@@ -8,0 +19,0 @@

8

package.json
{
"name": "standard",
"description": "JavaScript Standard Style",
"version": "8.2.0",
"version": "8.3.0",
"author": {

@@ -16,4 +16,4 @@ "email": "feross@feross.org",

"eslint": "~3.6.0",
"eslint-config-standard": "6.1.0",
"eslint-config-standard-jsx": "3.1.0",
"eslint-config-standard": "6.2.0",
"eslint-config-standard-jsx": "3.2.0",
"eslint-plugin-promise": "^2.0.0",

@@ -25,3 +25,3 @@ "eslint-plugin-react": "^6.0.0",

"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-eslint": "^7.0.0",
"cross-spawn": "^4.0.0",

@@ -28,0 +28,0 @@ "minimist": "^1.2.0",

@@ -541,4 +541,7 @@ <h1 align="center">

var opts = {
fix: false, // automatically fix problems
globals: [], // global variables to declare
parser: '' // custom js parser (e.g. babel-eslint)
plugins: [], // eslint plugins
envs: [], // eslint environment
parser: '' // js parser (e.g. babel-eslint)
}

@@ -572,6 +575,9 @@ ```

var opts = {
ignore: [], // file globs to ignore (has sane defaults)
cwd: '', // current working directory (default: process.cwd())
fix: false, // automatically fix problems
globals: [], // global variables to declare
parser: '', // custom js parser (e.g. babel-eslint)
ignore: [], // file globs to ignore (has sane defaults)
cwd: '' // current working directory (default: process.cwd())
plugins: [], // eslint plugins
envs: [], // eslint environment
parser: '' // js parser (e.g. babel-eslint)
}

@@ -578,0 +584,0 @@ ```

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