qa-control 0.5.0-rc.1 → 0.6.0
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.
- package/README.md +1 -1
- package/bin/{0.3.0 → definition}/definition.js +680 -764
- package/bin/{0.3.0 → definition}/first-lines-both.txt +25 -25
- package/bin/definition/first-lines-client.txt +3 -0
- package/bin/{0.3.0 → definition}/first-lines-server-app.txt +2 -2
- package/bin/{0.3.0 → definition}/first-lines-server-cmd-tool.txt +2 -2
- package/bin/{0.3.0 → definition}/first-lines-server.txt +3 -3
- package/bin/definition/first-lines-web.txt +3 -0
- package/bin/qa-control-run.js +1 -0
- package/bin/qa-control.js +15 -42
- package/bin/qac-init.js +0 -18
- package/package.json +1 -1
- package/bin/0.0.1/definition.js +0 -556
- package/bin/0.0.1/first-lines-both.txt +0 -28
- package/bin/0.0.1/first-lines-client.txt +0 -6
- package/bin/0.0.1/first-lines-server-app.txt +0 -6
- package/bin/0.0.1/first-lines-server.txt +0 -6
- package/bin/0.0.2/definition.js +0 -577
- package/bin/0.0.2/first-lines-both.txt +0 -28
- package/bin/0.0.2/first-lines-client.txt +0 -6
- package/bin/0.0.2/first-lines-server-app.txt +0 -6
- package/bin/0.0.2/first-lines-server.txt +0 -6
- package/bin/0.1.3/definition.js +0 -653
- package/bin/0.1.3/first-lines-both.txt +0 -28
- package/bin/0.1.3/first-lines-client.txt +0 -6
- package/bin/0.1.3/first-lines-server-app.txt +0 -7
- package/bin/0.1.3/first-lines-server.txt +0 -7
- package/bin/0.1.4/definition.js +0 -706
- package/bin/0.1.4/first-lines-both.txt +0 -28
- package/bin/0.1.4/first-lines-client.txt +0 -6
- package/bin/0.1.4/first-lines-server-app.txt +0 -7
- package/bin/0.1.4/first-lines-server.txt +0 -7
- package/bin/0.2.0/definition.js +0 -771
- package/bin/0.2.0/first-lines-both.txt +0 -27
- package/bin/0.2.0/first-lines-client.txt +0 -5
- package/bin/0.2.0/first-lines-server-app.txt +0 -6
- package/bin/0.2.0/first-lines-server-cmd-tool.txt +0 -6
- package/bin/0.2.0/first-lines-server.txt +0 -6
- package/bin/0.3.0/first-lines-client.txt +0 -3
- package/bin/0.3.0/first-lines-web.txt +0 -3
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*jshint eqnull:true */
|
|
3
|
-
/*jshint globalstrict:true */
|
|
4
|
-
/*jshint node:true */
|
|
5
|
-
|
|
6
|
-
(function codenautasModuleDefinition(root, name, factory) {
|
|
7
|
-
/* global define */
|
|
8
|
-
/* istanbul ignore next */
|
|
9
|
-
if(typeof root.globalModuleName !== 'string'){
|
|
10
|
-
root.globalModuleName = name;
|
|
11
|
-
}
|
|
12
|
-
/* istanbul ignore next */
|
|
13
|
-
if(typeof exports === 'object' && typeof module === 'object'){
|
|
14
|
-
module.exports = factory();
|
|
15
|
-
}else if(typeof define === 'function' && define.amd){
|
|
16
|
-
define(factory);
|
|
17
|
-
}else if(typeof exports === 'object'){
|
|
18
|
-
exports[root.globalModuleName] = factory();
|
|
19
|
-
}else{
|
|
20
|
-
root[root.globalModuleName] = factory();
|
|
21
|
-
}
|
|
22
|
-
root.globalModuleName = null;
|
|
23
|
-
})(/*jshint -W040 */this, 'nombreDelModulo', function() {
|
|
24
|
-
/*jshint +W040 */
|
|
25
|
-
|
|
26
|
-
/*jshint -W004 */
|
|
27
|
-
var nombreDelModulo = {};
|
|
28
|
-
/*jshint +W004 */
|