Comparing version 1.4.3 to 1.4.4
{ | ||
"name": "lc2", | ||
"version": "1.4.3", | ||
"version": "1.4.4", | ||
"description": "browser automation library", | ||
@@ -9,3 +9,3 @@ "main": "src/index.js", | ||
"dev": "webpack-dev-server --host 0.0.0.0 --port 3001", | ||
"build": "npm update && webpack && webpack -p --output-filename lemoncase.min.js" | ||
"build": "webpack && webpack -p --output-filename lemoncase.min.js" | ||
}, | ||
@@ -34,3 +34,3 @@ "engines": { | ||
"devDependencies": { | ||
"angular": "^1.5.6", | ||
"angular": "^1.5.7", | ||
"ava": "^0.15.2", | ||
@@ -50,3 +50,3 @@ "codemirror": "^5.14.2", | ||
"dependencies": { | ||
"lc2-selector": "^1.0.0", | ||
"lc2-selector": "^1.0.3", | ||
"oc-trigger": "^1.1.1", | ||
@@ -53,0 +53,0 @@ "sizzle": "^2.3.0" |
@@ -23,3 +23,2 @@ /*jslint sloppy: true, nomen: true */ | ||
LOG = instructionType.LOG, | ||
CONSOLE = instructionType.CONSOLE, | ||
@@ -227,13 +226,4 @@ PROCESS = instructionType.PROCESS, | ||
operation: function Log() { | ||
this.$case.$pushLog([LOG, this.$case.$runExp(this.body('msg'))]); | ||
}, | ||
bodyFactory: function (msg) { | ||
return { | ||
msg: msg | ||
}; | ||
} | ||
}); | ||
IF(CONSOLE, { | ||
operation: function Console() { | ||
var msg = this.$case.$runExp(this.body('msg')); | ||
this.$case.$pushLog([LOG, msg], this.line()); | ||
console.log(msg); | ||
@@ -247,2 +237,2 @@ settings.consoleFn(msg); | ||
} | ||
}); | ||
}); |
@@ -12,4 +12,3 @@ module.exports = { | ||
LOG: 0x20, | ||
CONSOLE: 0x21, | ||
PROCESS: 0xFF | ||
}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
328561
29
7972
2
0
Updatedlc2-selector@^1.0.3