ellipsis-com 0.0.1 → 0.1.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 CHANGED
@@ -28,8 +28,8 @@ npm test
28
28
  ## Basic usage
29
29
 
30
30
  ```ts
31
- import { ComManager } from '../ComManager'
32
- import { ComMacro } from '../ComMacro'
31
+ import { ComManager } from 'ellipsis-com'
32
+ import { ComMacro } from 'ellipsis-com'
33
33
 
34
34
  /**
35
35
  * This demo works with the arduino-demo sketch.
@@ -0,0 +1,5 @@
1
+ export { ComManager } from './ComManager';
2
+ export { ComMacro } from './ComMacro';
3
+ export { ComPort } from './ComPort';
4
+ export { ComType } from './ComType';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ComType = exports.ComPort = exports.ComMacro = exports.ComManager = void 0;
4
+ var ComManager_1 = require("./ComManager");
5
+ Object.defineProperty(exports, "ComManager", { enumerable: true, get: function () { return ComManager_1.ComManager; } });
6
+ var ComMacro_1 = require("./ComMacro");
7
+ Object.defineProperty(exports, "ComMacro", { enumerable: true, get: function () { return ComMacro_1.ComMacro; } });
8
+ var ComPort_1 = require("./ComPort");
9
+ Object.defineProperty(exports, "ComPort", { enumerable: true, get: function () { return ComPort_1.ComPort; } });
10
+ var ComType_1 = require("./ComType");
11
+ Object.defineProperty(exports, "ComType", { enumerable: true, get: function () { return ComType_1.ComType; } });
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,2CAAyC;AAAhC,wGAAA,UAAU,OAAA;AACnB,uCAAqC;AAA5B,oGAAA,QAAQ,OAAA;AACjB,qCAAmC;AAA1B,kGAAA,OAAO,OAAA;AAChB,qCAAmC;AAA1B,kGAAA,OAAO,OAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ellipsis-com",
3
- "version": "0.0.1",
3
+ "version": "0.1.0",
4
4
  "description": "For the management of serial communication based on commands and responses defined by regular expressions.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts ADDED
@@ -0,0 +1,4 @@
1
+ export { ComManager } from './ComManager'
2
+ export { ComMacro } from './ComMacro'
3
+ export { ComPort } from './ComPort'
4
+ export { ComType } from './ComType'