@plasoft/boletos 1.0.1 → 1.0.2
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/build/index.d.mts +3 -0
- package/build/index.d.ts +3 -0
- package/build/index.mjs +19 -0
- package/package.json +2 -2
package/build/index.d.ts
ADDED
package/build/index.mjs
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// src/ailos/gerarDadosBoleto.ts
|
|
2
|
+
import { differenceInDays } from "date-fns";
|
|
3
|
+
|
|
4
|
+
// src/ailos/gerarPDF.ts
|
|
5
|
+
import BwipJs from "bwip-js";
|
|
6
|
+
|
|
7
|
+
// src/utils/compileHbs.ts
|
|
8
|
+
import hbs from "handlebars";
|
|
9
|
+
|
|
10
|
+
// src/ailos/gerarRemessa.ts
|
|
11
|
+
import { addDays, format } from "date-fns";
|
|
12
|
+
|
|
13
|
+
// src/bradesco/index.ts
|
|
14
|
+
function bradesco() {
|
|
15
|
+
console.log("bradesco");
|
|
16
|
+
}
|
|
17
|
+
export {
|
|
18
|
+
bradesco
|
|
19
|
+
};
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasoft/boletos",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsup src/index.ts --format esm, cjs --dts --out-dir build",
|
|
8
8
|
"dev": "tsup src/index.ts --format esm, cjs --dts --out-dir build --watch",
|
|
9
|
-
"
|
|
9
|
+
"deploy": "npm run build && npm publish --access=public"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@types/bwip-js": "^3.2.0",
|