Skip to content

Commit

Permalink
update chai dep
Browse files Browse the repository at this point in the history
smhg committed Feb 9, 2024

Verified

This commit was signed with the committer’s verified signature.
1 parent 038aad0 commit e6e234f
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@
"safe-buffer": "^5.2.1"
},
"devDependencies": {
"chai": "^4.4.1",
"chai": "^5.0.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
2 changes: 1 addition & 1 deletion test/mo-compiler-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import chai from 'chai';
import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import { mo } from '../index.js';
2 changes: 1 addition & 1 deletion test/mo-parser-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import chai from 'chai';
import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import { mo } from '../index.js';
2 changes: 1 addition & 1 deletion test/po-compiler-test.js
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ import { EOL } from 'os';
import { promisify } from 'util';
import path from 'path';
import { readFile as fsReadFile } from 'fs';
import chai from 'chai';
import * as chai from 'chai';
import { po } from '../index.js';
import { fileURLToPath } from 'url';

2 changes: 1 addition & 1 deletion test/po-obsolete-test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EOL } from 'os';
import chai from 'chai';
import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import fs from 'fs';
2 changes: 1 addition & 1 deletion test/po-parser-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import chai from 'chai';
import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import fs from 'fs';
2 changes: 1 addition & 1 deletion test/shared.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

import chai from 'chai';
import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import { formatCharset, parseHeader, generateHeader, foldLine, parseNPluralFromHeadersSafely } from '../lib/shared.js';

0 comments on commit e6e234f

Please sign in to comment.