@admc.com/eslintplugin-sn-test 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ var v = 3;
2
+ gs.log(v, "blaine");
@@ -1,3 +1,3 @@
1
1
  (function() {
2
- console.log("This will fail", "blaine");
3
- }(); // Invocation params here is what is constrained
2
+ gs.log("This will fail", "blaine");
3
+ })(); // Invocation params here is what is constrained
@@ -1,3 +1,3 @@
1
1
  (function() {
2
- console.log("This will fail", "blaine");
3
- }(alpha, beta); // Invocation params here is what is constrained
2
+ gs.log("This will fail", "blaine");
3
+ })(previous, previous); // Invocation params here is what is constrained
@@ -0,0 +1,3 @@
1
+ var nuVar = 3;
2
+ gs.log(request.http.inputParam + " / " + nuVar, "src");
3
+ response.setStatus(200);
@@ -0,0 +1,5 @@
1
+ (function() {
2
+ var v = 3;
3
+ gs.log(request.http.inputParam + v, "src");
4
+ response.setStatus(200);
5
+ })(response, APCHandler);
@@ -0,0 +1 @@
1
+ gs.log("here without IIFE", "blaine");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admc.com/eslintplugin-sn-test",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "External tests for ESLint plugin @admc.com/eslint-plugin-sn",
5
5
  "scripts": {
6
6
  "test": "mocha --recursive",
@@ -1 +0,0 @@
1
- console.log("here without IIFE", "blaine");