@bevry/wait
Advanced tools
Comparing version 1.1.0 to 2.0.0-next.1699898830.f4dea2859e58055db56c9074d95dbdfee85c7976
@@ -5,3 +5,3 @@ /** A promise that resolves after the specified milliseconds. */ | ||
console.warn( | ||
'`@bevry/wait` accepts milliseconds, you may have attempted to send it seconds', | ||
'`@bevry/wait` accepts milliseconds, you may have attempted to send it seconds' | ||
) | ||
@@ -8,0 +8,0 @@ } |
{ | ||
"name": "@bevry/wait", | ||
"version": "1.1.0", | ||
"version": "2.0.0-next.1699898830.f4dea2859e58055db56c9074d95dbdfee85c7976", | ||
"description": "Promise'd setTimeout", | ||
@@ -66,2 +66,5 @@ "homepage": "https://github.com/bevry/wait", | ||
], | ||
"contributors": [ | ||
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)" | ||
], | ||
"bugs": { | ||
@@ -75,3 +78,3 @@ "url": "https://github.com/bevry/wait/issues" | ||
"engines": { | ||
"node": ">=12" | ||
"node": ">=4" | ||
}, | ||
@@ -105,3 +108,3 @@ "editions": [ | ||
{ | ||
"description": "TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Require for modules", | ||
"description": "TypeScript compiled against ES2022 for Node.js 4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules", | ||
"directory": "edition-es2022", | ||
@@ -116,3 +119,3 @@ "entry": "index.js", | ||
"engines": { | ||
"node": "12 || 14 || 16 || 18 || 20 || 21", | ||
"node": "4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21", | ||
"browsers": false | ||
@@ -168,13 +171,13 @@ } | ||
"@bevry/update-contributors": "^1.23.0", | ||
"@types/node": "^20.8.10", | ||
"@typescript-eslint/eslint-plugin": "^6.9.1", | ||
"@typescript-eslint/parser": "^6.9.1", | ||
"assert-helpers": "^8.4.0", | ||
"eslint": "^8.52.0", | ||
"eslint-config-bevry": "^3.28.0", | ||
"@types/node": "^20.9.0", | ||
"@typescript-eslint/eslint-plugin": "^6.11.0", | ||
"@typescript-eslint/parser": "^6.11.0", | ||
"assert-helpers": "^11.2.0", | ||
"eslint": "^8.53.0", | ||
"eslint-config-bevry": "^3.29.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.1", | ||
"kava": "^5.17.0", | ||
"kava": "^7.1.0", | ||
"make-deno-edition": "^1.3.0", | ||
"prettier": "^3.0.3", | ||
"prettier": "^3.1.0", | ||
"projectz": "^2.23.0", | ||
@@ -185,12 +188,12 @@ "surge": "^0.23.1", | ||
"valid-directory": "^4.1.0", | ||
"valid-module": "^2.0.0" | ||
"valid-module": "^2.1.0" | ||
}, | ||
"scripts": { | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:clean": "rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:types", | ||
"our:compile:deno": "make-deno-edition --attempt", | ||
"our:compile:edition-browsers": "tsc --module ESNext --target ES2022 --outDir ./edition-browsers --project tsconfig.json && ( test ! -d edition-browsers/source || ( mv edition-browsers/source edition-temp && rm -Rf edition-browsers && mv edition-temp edition-browsers ) )", | ||
"our:compile:edition-es2022": "tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -Rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json", | ||
"our:compile:edition-es2022-esm": "tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -Rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json", | ||
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )", | ||
"our:compile:edition-browsers": "tsc --module ESNext --target ES2022 --outDir ./edition-browsers --project tsconfig.json && ( test ! -d edition-browsers/source || ( mv edition-browsers/source edition-temp && rm -rf edition-browsers && mv edition-temp edition-browsers ) )", | ||
"our:compile:edition-es2022": "tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json", | ||
"our:compile:edition-es2022-esm": "tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json", | ||
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -rf compiled-types && mv edition-temp compiled-types ) )", | ||
"our:deploy": "printf '%s\n' 'no need for this project'", | ||
@@ -200,3 +203,3 @@ "our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta:docs": "npm run our:meta:docs:typedoc", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source", | ||
"our:meta:docs:typedoc": "rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source", | ||
"our:meta:projectz": "projectz compile", | ||
@@ -226,7 +229,5 @@ "our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push", | ||
"semi": false, | ||
"singleQuote": true | ||
}, | ||
"contributors": [ | ||
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)" | ||
] | ||
} | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
} | ||
} |
@@ -60,3 +60,3 @@ <!-- TITLE/ --> | ||
``` typescript | ||
import pkg from 'https://unpkg.com/@bevry/wait@^1.1.0/edition-deno/index.ts' | ||
import pkg from 'https://unpkg.com/@bevry/wait@^2.0.0/edition-deno/index.ts' | ||
``` | ||
@@ -68,3 +68,3 @@ | ||
<script type="module"> | ||
import pkg from '//cdn.skypack.dev/@bevry/wait@^1.1.0' | ||
import pkg from '//cdn.skypack.dev/@bevry/wait@^2.0.0' | ||
</script> | ||
@@ -77,3 +77,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//unpkg.com/@bevry/wait@^1.1.0' | ||
import pkg from '//unpkg.com/@bevry/wait@^2.0.0' | ||
</script> | ||
@@ -86,3 +86,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//dev.jspm.io/@bevry/wait@1.1.0' | ||
import pkg from '//dev.jspm.io/@bevry/wait@2.0.0' | ||
</script> | ||
@@ -98,3 +98,3 @@ ``` | ||
<li><code>@bevry/wait</code> aliases <code>@bevry/wait/edition-es2022/index.js</code></li> | ||
<li><code>@bevry/wait/edition-es2022/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 12 || 14 || 16 || 18 || 20 || 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li> | ||
<li><code>@bevry/wait/edition-es2022/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li> | ||
<li><code>@bevry/wait/edition-es2022-esm/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 12 || 14 || 16 || 18 || 20 || 21 with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
@@ -101,0 +101,0 @@ <li><code>@bevry/wait/edition-deno/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code made to be compatible with <a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js">Deno</a></li></ul> |
@@ -5,3 +5,3 @@ /** A promise that resolves after the specified milliseconds. */ | ||
console.warn( | ||
'`@bevry/wait` accepts milliseconds, you may have attempted to send it seconds', | ||
'`@bevry/wait` accepts milliseconds, you may have attempted to send it seconds' | ||
) | ||
@@ -8,0 +8,0 @@ } |
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
32647
15
1