Comparing version 0.0.719 to 0.0.720
@@ -1,2 +0,2 @@ | ||
import './global.type.ts'; | ||
import './global.type'; | ||
@@ -3,0 +3,0 @@ const global: { undefined: undefined } & typeof globalThis = undefined |
import { LRU } from './lru'; | ||
import LRUCache from 'lru-cache'; | ||
import { LRUCache } from 'lru-cache'; | ||
import { xorshift } from './random'; | ||
@@ -4,0 +4,0 @@ import zipfian from 'zipfian-integer'; |
{ | ||
"name": "spica", | ||
"version": "0.0.719", | ||
"version": "0.0.720", | ||
"description": "Supervisor, Coroutine, Channel, select, AtomicPromise, Cancellation, Cache, List, Queue, Stack, and some utils.", | ||
@@ -60,13 +60,13 @@ "private": false, | ||
"@types/yallist": "4.0.1", | ||
"@typescript-eslint/parser": "^5.49.0", | ||
"@typescript-eslint/parser": "^5.59.0", | ||
"babel-loader": "^9.1.2", | ||
"babel-plugin-unassert": "^3.2.0", | ||
"bluebird": "^3.7.2", | ||
"concurrently": "^7.6.0", | ||
"eslint": "^8.32.0", | ||
"eslint-plugin-redos": "^4.4.3", | ||
"eslint-webpack-plugin": "^3.2.0", | ||
"glob": "^8.1.0", | ||
"concurrently": "^8.0.1", | ||
"eslint": "^8.38.0", | ||
"eslint-plugin-redos": "^4.4.5", | ||
"eslint-webpack-plugin": "^4.0.1", | ||
"glob": "^10.2.1", | ||
"karma": "^6.4.1", | ||
"karma-chrome-launcher": "^3.1.1", | ||
"karma-chrome-launcher": "^3.2.0", | ||
"karma-coverage": "^2.2.0", | ||
@@ -76,9 +76,9 @@ "karma-firefox-launcher": "^2.1.2", | ||
"karma-power-assert": "^1.0.0", | ||
"lru-cache": "^7.14.1", | ||
"lru-cache": "^9.1.0", | ||
"mocha": "^10.2.0", | ||
"npm-check-updates": "^16.6.3", | ||
"npm-check-updates": "^16.10.9", | ||
"ts-loader": "^9.4.2", | ||
"typescript": "4.9.4", | ||
"webpack": "^5.75.0", | ||
"webpack-cli": "^5.0.1", | ||
"typescript": "5.0.4", | ||
"webpack": "^5.80.0", | ||
"webpack-cli": "^5.0.2", | ||
"webpack-merge": "^5.8.0", | ||
@@ -85,0 +85,0 @@ "yallist": "^4.0.0", |
@@ -1,2 +0,2 @@ | ||
import './global.type.ts'; | ||
import './global.type'; | ||
@@ -3,0 +3,0 @@ const global: { undefined: undefined } & typeof globalThis = undefined |
import { LRU } from './lru'; | ||
import LRUCache from 'lru-cache'; | ||
import { LRUCache } from 'lru-cache'; | ||
import { xorshift } from './random'; | ||
@@ -4,0 +4,0 @@ import zipfian from 'zipfian-integer'; |
@@ -21,2 +21,3 @@ { | ||
"suppressImplicitAnyIndexErrors": true, | ||
"ignoreDeprecations": "5.0", | ||
"noFallthroughCasesInSwitch": true, | ||
@@ -23,0 +24,0 @@ "noErrorTruncation": true, |
@@ -34,3 +34,3 @@ const path = require('path'); | ||
}, | ||
entry: glob.sync('./{src,test}/**/*.ts'), | ||
entry: glob.sync('./{src,test}/**/*.ts', { absolute: true }), | ||
output: { | ||
@@ -80,3 +80,3 @@ filename: 'index.js', | ||
return merge(config, { | ||
entry: glob.sync('./!(node_modules)**/*.ts'), | ||
entry: glob.sync('./!(node_modules)/**/*.ts', { absolute: true }), | ||
plugins: [ | ||
@@ -90,3 +90,3 @@ new ESLintPlugin({ | ||
return merge(config, { | ||
entry: glob.sync('./benchmark/**/*.ts'), | ||
entry: glob.sync('./benchmark/**/*.ts', { absolute: true }).sort(), | ||
module: { | ||
@@ -113,2 +113,3 @@ rules: [ | ||
// entry: Object.fromEntries(glob.sync('./src/*.ts', { | ||
// absolute: true, | ||
// ignore: './**/*.test.ts', | ||
@@ -115,0 +116,0 @@ // }).map(path => [path.match(/[\w.]+(?=\.)/)[0], path])), |
1151708
32213