@monstermakes/larry-scaffolds
Advanced tools
Comparing version 1.8.1 to 1.8.4
@@ -6,8 +6,16 @@ # Change Log | ||
## [1.8.1](https://github.com/MonsterMakes/larry-scaffolds/compare/@monstermakes/larry-scaffolds@1.8.0...@monstermakes/larry-scaffolds@1.8.1) (2021-04-29) | ||
## [1.8.4](https://github.com/MonsterMakes/larry-scaffolds/compare/@monstermakes/larry-scaffolds@1.8.3...@monstermakes/larry-scaffolds@1.8.4) (2022-03-29) | ||
**Note:** Version bump only for package @monstermakes/larry-scaffolds | ||
## [1.8.3](https://github.com/MonsterMakes/larry-scaffolds/compare/@monstermakes/larry-scaffolds@1.8.1...@monstermakes/larry-scaffolds@1.8.3) (2022-03-29) | ||
### Bug Fixes | ||
* make eslint rules consistent ([790add5](https://github.com/MonsterMakes/larry-scaffolds/commit/790add52dfa7e8e7f95a5a846fcbac6eb1867273)) | ||
* **larry-bnd:** WIP ([106d715](https://github.com/MonsterMakes/larry-scaffolds/commit/106d7151437e8ffbb12f762475f5475ac7dcf39a)) | ||
@@ -18,2 +26,13 @@ | ||
## [1.8.2](https://github.com/MonsterMakes/larry-scaffolds/compare/@monstermakes/larry-scaffolds@1.8.1...@monstermakes/larry-scaffolds@1.8.2) (2022-03-29) | ||
### Bug Fixes | ||
* **larry-bnd:** WIP ([106d715](https://github.com/MonsterMakes/larry-scaffolds/commit/106d7151437e8ffbb12f762475f5475ac7dcf39a)) | ||
# [1.8.0](https://github.com/MonsterMakes/larry-scaffolds/compare/@monstermakes/larry-scaffolds@1.7.1...@monstermakes/larry-scaffolds@1.8.0) (2021-02-09) | ||
@@ -20,0 +39,0 @@ |
{ | ||
"name": "@monstermakes/larry-scaffolds", | ||
"description": "This node module is a plugin based framework for scaffolding and/or generating Larry code.", | ||
"version": "1.8.1", | ||
"version": "1.8.4", | ||
"publishConfig": {}, | ||
@@ -31,4 +31,4 @@ "bin": { | ||
"dependencies": { | ||
"@monstermakes/larry-cli": "^0.3.2", | ||
"@monstermakes/larry-logger": "^0.1.1", | ||
"@monstermakes/larry-cli": "^0.3.6", | ||
"@monstermakes/larry-logger": "^0.1.5", | ||
"fs-extra": "^4.0.2", | ||
@@ -48,7 +48,7 @@ "glob": "^7.1.3", | ||
"chai-files": "^1.4.0", | ||
"eslint": "^7.25.0", | ||
"eslint": "^4.17.0", | ||
"mocha": "^5.0.0", | ||
"nyc": "^11.4.1" | ||
}, | ||
"gitHead": "593928ee0af64a69fa9cf7e87a617d77cd2d3f3d" | ||
"gitHead": "ae0dbca782a8e6c08c50beacbae904ae86b9539b" | ||
} |
module.exports = { | ||
"plugins": [ | ||
'plugins': [ | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2020 | ||
'parserOptions': { | ||
'sourceType': 'module', | ||
'ecmaVersion': 2017 | ||
}, | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"mocha": true | ||
'env': { | ||
'es6': true, | ||
'node': true, | ||
'mocha': true | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"no-console": ["error"], | ||
"no-prototype-builtins": "off", | ||
"no-unused-vars": ["error", { "args": "none" }], | ||
"indent": [ | ||
"warn", | ||
"tab" | ||
'extends': 'eslint:recommended', | ||
'rules': { | ||
'no-console': ['error'], | ||
'indent': [ | ||
'warn', | ||
'tab' | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
'linebreak-style': [ | ||
'error', | ||
'unix' | ||
], | ||
"quotes": [ | ||
"warn", | ||
"single", | ||
{ "allowTemplateLiterals": true } | ||
'quotes': [ | ||
'warn', | ||
'single', | ||
{ 'allowTemplateLiterals': true } | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
'semi': [ | ||
'error', | ||
'always' | ||
] | ||
} | ||
}; |
'use strict'; | ||
const chai = require('chai'); | ||
const should = chai.should();//eslint-disable-line | ||
const expect = chai.expect;//eslint-disable-line | ||
const should = chai.should(); // eslint-disable-line | ||
const expect = chai.expect; // eslint-disable-line | ||
const chaiHttp = require('chai-http'); | ||
@@ -6,0 +6,0 @@ chai.use(chaiHttp); |
'use strict'; | ||
const chai = require('chai'); | ||
const should = chai.should();//eslint-disable-line | ||
const expect = chai.expect;//eslint-disable-line | ||
const should = chai.should(); // eslint-disable-line | ||
const expect = chai.expect; // eslint-disable-line | ||
@@ -6,0 +6,0 @@ const TEST_NAME = 'Test Example'; |
@@ -28,3 +28,3 @@ { | ||
"lint-fix": "echo '=> Fixing Linting errors...' && eslint src/**/*.js --fix", | ||
"test-unit-file": "echo '=> Running individual Test...' && mocha --timeout 60000 --colors --inspect --debug-brk", | ||
"test-unit-file": "echo '=> Running individual Test...' && mocha --timeout 60000 --colors", | ||
"test-unit": "echo '=> Running Tests...' && npm run test-unit-file 'test/unit/**/*.spec.js'", | ||
@@ -31,0 +31,0 @@ "watch-test-unit-file": "echo '=> Running Test Watcher for individual test...' && npm run test-unit-file -- --watch", |
@@ -5,4 +5,3 @@ module.exports = { | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2020 | ||
"sourceType": "module" | ||
}, | ||
@@ -9,0 +8,0 @@ "env": { |
'use strict'; | ||
const chai = require('chai'); | ||
const should = chai.should();//eslint-disable-line | ||
const expect = chai.expect;//eslint-disable-line | ||
const should = chai.should(); // eslint-disable-line | ||
const expect = chai.expect; // eslint-disable-line | ||
@@ -6,0 +6,0 @@ const TEST_NAME = 'Test Example'; |
@@ -5,4 +5,3 @@ module.exports = { | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2020 | ||
"sourceType": "module" | ||
}, | ||
@@ -17,4 +16,2 @@ "env": { | ||
"no-console": ["error"], | ||
"no-prototype-builtins": "off", | ||
"no-unused-vars": ["error", { "args": "none" }], | ||
"indent": [ | ||
@@ -21,0 +18,0 @@ "warn", |
module.exports = { | ||
"plugins": [ | ||
"cypress" | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2020 | ||
}, | ||
"env": { | ||
"cypress/globals": true, | ||
"es6": true, | ||
@@ -16,4 +14,2 @@ "node": true, | ||
"no-console": ["error"], | ||
"no-prototype-builtins": "off", | ||
"no-unused-vars": ["error", { "args": "none" }], | ||
"indent": [ | ||
@@ -20,0 +16,0 @@ "warn", |
'use strict'; | ||
const chai = require('chai'); | ||
const should = chai.should();//eslint-disable-line | ||
const expect = chai.expect;//eslint-disable-line | ||
const should = chai.should(); // eslint-disable-line | ||
const expect = chai.expect; // eslint-disable-line | ||
const util = require('../src/lib/Util'); | ||
const util = require('../src/lib/Util'); // eslint-disable-line | ||
@@ -8,0 +8,0 @@ const TEST_NAME = 'Test Example'; |
module.exports = { | ||
"plugins": [ | ||
'plugins': [ | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2020 | ||
'parserOptions': { | ||
'sourceType': 'module', | ||
'ecmaVersion': 2017 | ||
}, | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"mocha": true | ||
'env': { | ||
'es6': true, | ||
'node': true, | ||
'mocha': true | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"no-console": ["error"], | ||
"no-prototype-builtins": "off", | ||
"no-unused-vars": ["error", { "args": "none" }], | ||
"indent": [ | ||
"warn", | ||
"tab" | ||
'extends': 'eslint:recommended', | ||
'rules': { | ||
'no-console': ['error'], | ||
'indent': [ | ||
'warn', | ||
'tab' | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
'linebreak-style': [ | ||
'error', | ||
'unix' | ||
], | ||
"quotes": [ | ||
"warn", | ||
"single", | ||
{ "allowTemplateLiterals": true } | ||
'quotes': [ | ||
'warn', | ||
'single', | ||
{ 'allowTemplateLiterals': true } | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
'semi': [ | ||
'error', | ||
'always' | ||
] | ||
} | ||
}; |
'use strict'; | ||
const chai = require('chai'); | ||
const should = chai.should();//eslint-disable-line | ||
const expect = chai.expect;//eslint-disable-line | ||
const should = chai.should(); // eslint-disable-line | ||
const expect = chai.expect; // eslint-disable-line | ||
const http = require('http'); | ||
@@ -7,0 +7,0 @@ |
'use strict'; | ||
const chai = require('chai'); | ||
const should = chai.should();//eslint-disable-line | ||
const expect = chai.expect;//eslint-disable-line | ||
const should = chai.should(); // eslint-disable-line | ||
const expect = chai.expect; // eslint-disable-line | ||
@@ -7,0 +7,0 @@ const TEST_NAME = 'Test Example'; |
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
547608
160
4247
13