mail-monster-lib 0.0.1 → 0.0.3
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,27 @@
|
|
|
1
|
+
export declare const myLib: {
|
|
2
|
+
/**
|
|
3
|
+
* Add two numbers
|
|
4
|
+
* @param number1 First number to add
|
|
5
|
+
* @param number2 Second number to add
|
|
6
|
+
*/
|
|
7
|
+
add(number1: number, number2: number): number;
|
|
8
|
+
/**
|
|
9
|
+
* Subtract two numbers
|
|
10
|
+
* @param number1 First number to be subtracted
|
|
11
|
+
* @param number2 Second number to subtract
|
|
12
|
+
*/
|
|
13
|
+
subtract(number1: number, number2: number): number;
|
|
14
|
+
/**
|
|
15
|
+
* Multiply two numbers
|
|
16
|
+
* @param number1 First number to multiply
|
|
17
|
+
* @param number2 Second number to multiply
|
|
18
|
+
*/
|
|
19
|
+
multiply(number1: number, number2: number): number;
|
|
20
|
+
/**
|
|
21
|
+
* Divide two numbers
|
|
22
|
+
* @param number1 First number to be divided
|
|
23
|
+
* @param number2 Second number to divide
|
|
24
|
+
*/
|
|
25
|
+
divide(number1: number, number2: number): number;
|
|
26
|
+
};
|
|
27
|
+
export declare function getEmails(): Promise<string>;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// my awesome library
|
|
3
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
12
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
13
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
14
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
15
|
+
function step(op) {
|
|
16
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
17
|
+
while (_) try {
|
|
18
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
19
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
20
|
+
switch (op[0]) {
|
|
21
|
+
case 0: case 1: t = op; break;
|
|
22
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
23
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
24
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
25
|
+
default:
|
|
26
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
27
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
28
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
29
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
30
|
+
if (t[2]) _.ops.pop();
|
|
31
|
+
_.trys.pop(); continue;
|
|
32
|
+
}
|
|
33
|
+
op = body.call(thisArg, _);
|
|
34
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
35
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
// Intentionally avoid using 'export default' to reduce confusion.
|
|
40
|
+
exports.myLib = {
|
|
41
|
+
/**
|
|
42
|
+
* Add two numbers
|
|
43
|
+
* @param number1 First number to add
|
|
44
|
+
* @param number2 Second number to add
|
|
45
|
+
*/
|
|
46
|
+
add: function (number1, number2) {
|
|
47
|
+
return number1 + number2;
|
|
48
|
+
},
|
|
49
|
+
/**
|
|
50
|
+
* Subtract two numbers
|
|
51
|
+
* @param number1 First number to be subtracted
|
|
52
|
+
* @param number2 Second number to subtract
|
|
53
|
+
*/
|
|
54
|
+
subtract: function (number1, number2) {
|
|
55
|
+
return number1 - number2;
|
|
56
|
+
},
|
|
57
|
+
/**
|
|
58
|
+
* Multiply two numbers
|
|
59
|
+
* @param number1 First number to multiply
|
|
60
|
+
* @param number2 Second number to multiply
|
|
61
|
+
*/
|
|
62
|
+
multiply: function (number1, number2) {
|
|
63
|
+
return number1 * number2;
|
|
64
|
+
},
|
|
65
|
+
/**
|
|
66
|
+
* Divide two numbers
|
|
67
|
+
* @param number1 First number to be divided
|
|
68
|
+
* @param number2 Second number to divide
|
|
69
|
+
*/
|
|
70
|
+
divide: function (number1, number2) {
|
|
71
|
+
return number1 / number2;
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
function getEmails() {
|
|
75
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
76
|
+
var response;
|
|
77
|
+
return __generator(this, function (_a) {
|
|
78
|
+
switch (_a.label) {
|
|
79
|
+
case 0: return [4 /*yield*/, fetch('https://www.w3.org/')];
|
|
80
|
+
case 1:
|
|
81
|
+
response = _a.sent();
|
|
82
|
+
if (!response.ok) {
|
|
83
|
+
throw new Error("Failed to fetch: " + response.status + " " + response.statusText);
|
|
84
|
+
}
|
|
85
|
+
return [2 /*return*/, response.text()];
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
exports.getEmails = getEmails;
|
|
91
|
+
//# sourceMappingURL=mail-monster-lib.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mail-monster-lib.js","sourceRoot":"","sources":["../src/mail-monster-lib.ts"],"names":[],"mappings":";AAAA,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAErB,kEAAkE;AACrD,QAAA,KAAK,GAAG;IACnB;;;;OAIG;IACH,GAAG,EAAH,UAAI,OAAe,EAAE,OAAe;QAClC,OAAO,OAAO,GAAG,OAAO,CAAC;IAC3B,CAAC;IAED;;;;OAIG;IACH,QAAQ,EAAR,UAAS,OAAe,EAAE,OAAe;QACvC,OAAO,OAAO,GAAG,OAAO,CAAC;IAC3B,CAAC;IAED;;;;OAIG;IACH,QAAQ,EAAR,UAAS,OAAe,EAAE,OAAe;QACvC,OAAO,OAAO,GAAG,OAAO,CAAC;IAC3B,CAAC;IAED;;;;OAIG;IACH,MAAM,EAAN,UAAO,OAAe,EAAE,OAAe;QACrC,OAAO,OAAO,GAAG,OAAO,CAAC;IAC3B,CAAC;CACF,CAAC;AAEF;;;;;wBACmB,qBAAM,KAAK,CAAC,qBAAqB,CAAC,EAAA;;oBAA7C,QAAQ,GAAG,SAAkC;oBACnD,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE;wBAChB,MAAM,IAAI,KAAK,CAAC,sBAAoB,QAAQ,CAAC,MAAM,SAAI,QAAQ,CAAC,UAAY,CAAC,CAAC;qBAC/E;oBACD,sBAAO,QAAQ,CAAC,IAAI,EAAE,EAAC;;;;CACxB;AAND,8BAMC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";var __awaiter=this&&this.__awaiter||function(thisArg,_arguments,P,generator){return new(P||(P=Promise))(function(resolve,reject){function fulfilled(value){try{step(generator.next(value))}catch(e){reject(e)}}function rejected(value){try{step(generator["throw"](value))}catch(e){reject(e)}}function step(result){result.done?resolve(result.value):new P(function(resolve){resolve(result.value)}).then(fulfilled,rejected)}step((generator=generator.apply(thisArg,_arguments||[])).next())})};var __generator=this&&this.__generator||function(thisArg,body){var _={label:0,sent:function(){if(t[0]&1)throw t[1];return t[1]},trys:[],ops:[]},f,y,t,g;return g={next:verb(0),throw:verb(1),return:verb(2)},typeof Symbol==="function"&&(g[Symbol.iterator]=function(){return this}),g;function verb(n){return function(v){return step([n,v])}}function step(op){if(f)throw new TypeError("Generator is already executing.");while(_)try{if(f=1,y&&(t=op[0]&2?y["return"]:op[0]?y["throw"]||((t=y["return"])&&t.call(y),0):y.next)&&!(t=t.call(y,op[1])).done)return t;if(y=0,t)op=[op[0]&2,t.value];switch(op[0]){case 0:case 1:t=op;break;case 4:_.label++;return{value:op[1],done:false};case 5:_.label++;y=op[1];op=[0];continue;case 7:op=_.ops.pop();_.trys.pop();continue;default:if(!(t=_.trys,t=t.length>0&&t[t.length-1])&&(op[0]===6||op[0]===2)){_=0;continue}if(op[0]===3&&(!t||op[1]>t[0]&&op[1]<t[3])){_.label=op[1];break}if(op[0]===6&&_.label<t[1]){_.label=t[1];t=op;break}if(t&&_.label<t[2]){_.label=t[2];_.ops.push(op);break}if(t[2])_.ops.pop();_.trys.pop();continue}op=body.call(thisArg,_)}catch(e){op=[6,e];y=0}finally{f=t=0}if(op[0]&5)throw op[1];return{value:op[0]?op[1]:void 0,done:true}}};Object.defineProperty(exports,"__esModule",{value:true});exports.myLib={add:function(number1,number2){return number1+number2},subtract:function(number1,number2){return number1-number2},multiply:function(number1,number2){return number1*number2},divide:function(number1,number2){return number1/number2}};function getEmails(){return __awaiter(this,void 0,void 0,function(){var response;return __generator(this,function(_a){switch(_a.label){case 0:return[4,fetch("https://www.w3.org/")];case 1:response=_a.sent();if(!response.ok){throw new Error("Failed to fetch: "+response.status+" "+response.statusText)}return[2,response.text()]}})})}exports.getEmails=getEmails;
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mail-monster-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Typescript library for Flow AI's MailMonster",
|
|
5
5
|
"main": "./dist/mail-monster-lib.min.js",
|
|
6
6
|
"types": "./dist/mail-monster-lib.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
7
10
|
"scripts": {
|
|
8
11
|
"dev": "npm run tslint && tsc",
|
|
9
12
|
"dev:watch": "nodemon --exec 'npm run dev || exit 1'",
|
|
@@ -12,7 +15,8 @@
|
|
|
12
15
|
"test": "npm run clean && jest && npm run demo:test && npm run clean",
|
|
13
16
|
"test:coverage": "npm run clean && jest --coverage && npm run demo:test && npm run clean",
|
|
14
17
|
"clean": "rm -rf dist",
|
|
15
|
-
"demo:test": "npm run build && cd demo && npm install && npm run add-self && npm test"
|
|
18
|
+
"demo:test": "npm run build && cd demo && npm install && npm run add-self && npm test",
|
|
19
|
+
"prepublishOnly": "npm run build"
|
|
16
20
|
},
|
|
17
21
|
"author": "henry@create-flow.ai",
|
|
18
22
|
"license": "MIT",
|
package/tests/tsc.test.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { exec } from 'child_process';
|
|
2
|
-
import fs from 'fs';
|
|
3
|
-
import 'jest';
|
|
4
|
-
import path from 'path';
|
|
5
|
-
|
|
6
|
-
const TSC_COMMONJS_PATH = path.resolve(__dirname, '../dist/mail-monster-lib.js');
|
|
7
|
-
const TSC_COMMONJS_SOURCEMAP_PATH = path.resolve(__dirname, '../dist/mail-monster-lib.js.map');
|
|
8
|
-
|
|
9
|
-
describe('tsc bundle result', () => {
|
|
10
|
-
test('should generate mail-monster-lib.js and mail-monster-lib.js.map for commonjs modules', (done) => {
|
|
11
|
-
// Run tsc in child process
|
|
12
|
-
const forked = exec('npm run dev', (err, stdout, stderr) => {
|
|
13
|
-
if (err) {
|
|
14
|
-
throw err;
|
|
15
|
-
done();
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
expect(fs.existsSync(TSC_COMMONJS_PATH)).toBeTruthy();
|
|
19
|
-
expect(fs.existsSync(TSC_COMMONJS_SOURCEMAP_PATH)).toBeTruthy();
|
|
20
|
-
done();
|
|
21
|
-
});
|
|
22
|
-
}, 10000); // Need extra time to run tsc command
|
|
23
|
-
});
|