Skip to content

Commit

Permalink
Release v2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jan 25, 2023
1 parent e81dcea commit e09d427
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion dist/clabe.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! clabe-validator v2.1.2 ~~ https://github.com/center-key/clabe-validator ~~ MIT License
//! clabe-validator v2.1.3 ~~ https://github.com/center-key/clabe-validator ~~ MIT License

export type ClabeBank = {
tag?: string;
Expand Down
4 changes: 2 additions & 2 deletions dist/clabe.dev.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! clabe-validator v2.1.2 ~~ https://github.com/center-key/clabe-validator ~~ MIT License
//! clabe-validator v2.1.3 ~~ https://github.com/center-key/clabe-validator ~~ MIT License

const clabe = {
version: '2.1.2',
version: '2.1.3',
computeChecksum(clabeNum17) {
const x = (i) => [3, 7, 1][i % 3];
const add = (sum, digit, i) => sum + (Number(digit) * x(i)) % 10;
Expand Down
4 changes: 2 additions & 2 deletions dist/clabe.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! clabe-validator v2.1.2 ~~ https://github.com/center-key/clabe-validator ~~ MIT License
//! clabe-validator v2.1.3 ~~ https://github.com/center-key/clabe-validator ~~ MIT License

const clabe = {
version: '2.1.2',
version: '2.1.3',
computeChecksum(clabeNum17) {
const x = (i) => [3, 7, 1][i % 3];
const add = (sum, digit, i) => sum + (Number(digit) * x(i)) % 10;
Expand Down
4 changes: 2 additions & 2 deletions dist/clabe.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/clabe.umd.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! clabe-validator v2.1.2 ~~ https://github.com/center-key/clabe-validator ~~ MIT License
//! clabe-validator v2.1.3 ~~ https://github.com/center-key/clabe-validator ~~ MIT License

(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
Expand All @@ -13,7 +13,7 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.clabe = void 0;
const clabe = {
version: '2.1.2',
version: '2.1.3',
computeChecksum(clabeNum17) {
const x = (i) => [3, 7, 1][i % 3];
const add = (sum, digit, i) => sum + (Number(digit) * x(i)) % 10;
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clabe-validator",
"version": "2.1.2",
"version": "2.1.3",
"description": "Analyze or create a CLABE number for a Mexican bank account (written in functional TypeScript)",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -86,21 +86,21 @@
"devDependencies": {
"@fortawesome/fontawesome-free": "~6.2",
"@types/node": "~18.11",
"@typescript-eslint/eslint-plugin": "~5.47",
"@typescript-eslint/parser": "~5.47",
"@typescript-eslint/eslint-plugin": "~5.49",
"@typescript-eslint/parser": "~5.49",
"add-dist-header": "~0.3",
"assert-deep-strict-equal": "~1.0",
"copy-file-util": "~0.1",
"copy-folder-util": "~0.2",
"dna-engine": "~2.2",
"eslint": "~8.31",
"eslint": "~8.32",
"esm-to-plain-js": "~0.1",
"jquery": "~3.6",
"jsdom": "~20.0",
"jsdom": "~21.1",
"jshint": "~2.13",
"mocha": "~10.2",
"pretty-print-json": "~1.3",
"rimraf": "~3.0",
"pretty-print-json": "~1.4",
"rimraf": "~4.1",
"run-scripts-util": "~0.1",
"typescript": "~4.9",
"uglify-js": "~3.17",
Expand Down
4 changes: 2 additions & 2 deletions spec/clabe.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/[email protected]/dist/dna-engine.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/[email protected]/dist/panel-nav.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/[email protected]/dist/reset.min.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/pretty-print-json@1.2/dist/pretty-print-json.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/pretty-print-json@1.4/dist/css/pretty-print-json.css>
<style>
form {
max-width: none;
Expand Down Expand Up @@ -58,7 +58,7 @@
<script defer src=https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/[email protected]/dist/dna-engine.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/[email protected]/dist/lib-x.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/pretty-print-json@1.2/dist/pretty-print-json.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/pretty-print-json@1.4/dist/pretty-print-json.min.js></script>
<script defer src=../dist/clabe.dev.js></script>
<script>
const app = {
Expand Down

0 comments on commit e09d427

Please sign in to comment.