Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Oct 27, 2021
1 parent f7cef9f commit bbfb42e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 24 deletions.
16 changes: 8 additions & 8 deletions build.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import fs from 'fs'
import https from 'https'
import fs from 'node:fs'
import https from 'node:https'
import concat from 'concat-stream'
import yauzl from 'yauzl'
import dsv from 'd3-dsv'
import bail from 'bail'
import * as dsv from 'd3-dsv'
import {bail} from 'bail'
import not from 'not'

var headers = ['code', 'numeric', 'english', 'french', 'pva', 'age', 'date']
var other = []
var found = false
const headers = ['code', 'numeric', 'english', 'french', 'pva', 'age', 'date']
const other = []
let found = false

https
.request(
Expand Down Expand Up @@ -64,7 +64,7 @@ function onend() {
}

function onconcat(body) {
var data = String(body).split('\n').filter(not(comment)).join('\n')
let data = String(body).split('\n').filter(not(comment)).join('\n')

data = dsv
.dsvFormat(';')
Expand Down
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1378,8 +1378,7 @@ export var iso15924 = [
},
{
code: 'Zanb',
name:
'Zanabazar Square (Zanabazarin Dörböljin Useg, Xewtee Dörböljin Bicig, Horizontal Square Script)',
name: 'Zanabazar Square (Zanabazarin Dörböljin Useg, Xewtee Dörböljin Bicig, Horizontal Square Script)',
numeric: '339',
pva: 'Zanabazar_Square',
date: '2017-07-26'
Expand Down
18 changes: 6 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@
],
"devDependencies": {
"@types/tape": "^4.0.0",
"bail": "^1.0.0",
"bail": "^2.0.0",
"c8": "^7.0.0",
"concat-stream": "^2.0.0",
"d3-dsv": "^2.0.0",
"d3-dsv": "^3.0.0",
"not": "^0.1.0",
"prettier": "^2.0.0",
"remark-cli": "^9.0.0",
"remark-preset-wooorm": "^8.0.0",
"remark-cli": "^10.0.0",
"remark-preset-wooorm": "^9.0.0",
"rimraf": "^3.0.0",
"tape": "^5.0.0",
"typescript": "^4.0.0",
"xo": "^0.38.0",
"xo": "^0.45.0",
"yauzl": "^2.0.0"
},
"scripts": {
Expand All @@ -62,13 +62,7 @@
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"import/no-mutable-exports": "off",
"no-var": "off",
"prefer-arrow-callback": "off"
}
"prettier": true
},
"remarkConfig": {
"plugins": [
Expand Down
4 changes: 2 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import test from 'tape'
import {iso15924} from './index.js'

test('iso15924', function (t) {
var index = -1
var script
let index = -1
let script

t.plan(6)

Expand Down

0 comments on commit bbfb42e

Please sign in to comment.