mirror of
https://github.com/danbulant/jose
synced 2026-05-24 20:41:46 +00:00
BREAKING CHANGE: Revised, Promise-based API BREAKING CHANGE: No dependencies BREAKING CHANGE: Browser support (using [Web Cryptography API](https://www.w3.org/TR/WebCryptoAPI/)) BREAKING CHANGE: Support for verification using a remote JWKS endpoint BREAKING CHANGE: Experimental Node.js libuv thread pool based runtime (non-blocking 🎉)
14 lines
336 B
JavaScript
14 lines
336 B
JavaScript
const path = require("path");
|
|
const { sync: glob } = require("glob");
|
|
|
|
module.exports = {
|
|
entry: glob("test-browser/*.js").reduce((acc, x) => {
|
|
acc[x.slice(13, -3)] = `./${x}`;
|
|
return acc;
|
|
}, {}),
|
|
mode: "development",
|
|
output: {
|
|
filename: "[name].js",
|
|
path: path.resolve(__dirname, "dist-browser-tests"),
|
|
},
|
|
};
|