Skip to content

Commit

Permalink
Release v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jun 5, 2021
1 parent 9774a32 commit 92d1090
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 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 v1.6.1 ~ github.com/center-key/clabe-validator ~ MIT License
//! CLABE Validator v1.6.2 ~ github.com/center-key/clabe-validator ~ MIT License

export declare type ClabeBank = {
tag?: string;
Expand Down
4 changes: 2 additions & 2 deletions dist/clabe.esm.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! CLABE Validator v1.6.1 ~ github.com/center-key/clabe-validator ~ MIT License
//! CLABE Validator v1.6.2 ~ github.com/center-key/clabe-validator ~ MIT License

const clabe = {
version: '1.6.1',
version: '1.6.2',
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 v1.6.1 ~ github.com/center-key/clabe-validator ~ MIT License
//! CLABE Validator v1.6.2 ~ github.com/center-key/clabe-validator ~ MIT License

const clabe = {
version: '1.6.1',
version: '1.6.2',
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 v1.6.1 ~ github.com/center-key/clabe-validator ~ MIT License
//! CLABE Validator v1.6.2 ~ 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: '1.6.1',
version: '1.6.2',
computeChecksum(clabeNum17) {
const x = (i) => [3, 7, 1][i % 3];
const add = (sum, digit, i) => sum + (Number(digit) * x(i)) % 10;
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clabe-validator",
"version": "1.6.1",
"version": "1.6.2",
"description": "Analyze or create a CLABE number for a Mexican bank account (written in TypeScript)",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -63,31 +63,31 @@
},
"dependencies": {},
"devDependencies": {
"@babel/core": "~7.13",
"@babel/preset-env": "~7.13",
"@babel/core": "~7.14",
"@babel/preset-env": "~7.14",
"@fortawesome/fontawesome-free": "~5.15",
"@typescript-eslint/eslint-plugin": "~4.22",
"@typescript-eslint/parser": "~4.22",
"@typescript-eslint/eslint-plugin": "~4.26",
"@typescript-eslint/parser": "~4.26",
"babel-minify": "~0.5",
"dna.js": "~1.7",
"eslint": "~7.24",
"eslint": "~7.28",
"gulp": "~4.0",
"gulp-append-prepend": "~1.0",
"gulp-babel": "~8.0",
"gulp-header": "~2.0",
"gulp-htmlhint": "~4.0",
"gulp-rename": "~2.0",
"gulp-replace": "~1.0",
"gulp-size": "~3.0",
"gulp-replace": "~1.1",
"gulp-size": "~4.0",
"gulp-w3c-html-validator": "~3.0",
"jquery": "~3.6",
"jsdom": "~16.5",
"jshint": "~2.12",
"jsdom": "~16.6",
"jshint": "~2.13",
"merge-stream": "~2.0",
"mocha": "~8.3",
"mocha": "~8.4",
"pretty-print-json": "~1.0",
"rimraf": "~3.0",
"typescript": "~4.2",
"typescript": "~4.3",
"web-ignition": "~1.4"
}
}

0 comments on commit 92d1090

Please sign in to comment.