supertokens-web-js
Advanced tools
Comparing version 0.13.0 to 0.13.1
@@ -10,2 +10,6 @@ # Changelog | ||
## [0.13.1] - 2024-10-08 | ||
- Changes bundle file names to include a hash. | ||
## [0.13.0] - 2024-07-10 | ||
@@ -12,0 +16,0 @@ |
@@ -1,2 +0,2 @@ | ||
export declare const package_version = "0.13.0"; | ||
export declare const package_version = "0.13.1"; | ||
export declare const supported_fdi: string[]; |
@@ -18,3 +18,3 @@ "use strict"; | ||
*/ | ||
exports.package_version = "0.13.0"; | ||
exports.package_version = "0.13.1"; | ||
exports.supported_fdi = ["2.0", "3.0"]; |
{ | ||
"name": "supertokens-web-js", | ||
"version": "0.13.0", | ||
"version": "0.13.1", | ||
"description": "SuperTokens SDK for vanilla JS for all recipes", | ||
@@ -9,3 +9,3 @@ "main": "./index.js", | ||
"check-circular-dependencies": "npx madge --circular --extensions js ./lib/build/", | ||
"build": "cd lib && rm -rf build && npx tsc -p tsconfig.json && npm run pack", | ||
"build": "rm -rf bundle && cd lib && rm -rf build && npx tsc -p tsconfig.json && npm run pack", | ||
"pretty-check": "npx pretty-quick --check .", | ||
@@ -12,0 +12,0 @@ "pretty": "npx pretty-quick .", |
@@ -19,3 +19,3 @@ var webpack = require("webpack"); | ||
import: APP_DIR + "/lib/build/bundleEntry.js", | ||
filename: "supertokens.js", | ||
filename: "supertokens.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -25,3 +25,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/session/index.js", | ||
filename: "session.js", | ||
filename: "session.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -31,3 +31,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/emailverification/index.js", | ||
filename: "emailverification.js", | ||
filename: "emailverification.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -37,3 +37,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/emailpassword/index.js", | ||
filename: "emailpassword.js", | ||
filename: "emailpassword.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -43,3 +43,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/thirdparty/index.js", | ||
filename: "thirdparty.js", | ||
filename: "thirdparty.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -49,3 +49,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/passwordless/index.js", | ||
filename: "passwordless.js", | ||
filename: "passwordless.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -55,3 +55,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/userroles/index.js", | ||
filename: "userroles.js", | ||
filename: "userroles.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -61,3 +61,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/multitenancy/index.js", | ||
filename: "multitenancy.js", | ||
filename: "multitenancy.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -67,3 +67,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/multifactorauth/index.js", | ||
filename: "multifactorauth.js", | ||
filename: "multifactorauth.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -73,3 +73,3 @@ }, | ||
import: APP_DIR + "/lib/build/recipe/totp/index.js", | ||
filename: "totp.js", | ||
filename: "totp.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -84,3 +84,3 @@ }, | ||
import: APP_DIR + "/utils/dateProvider/index.js", | ||
filename: "dateprovider.js", | ||
filename: "dateprovider.[contenthash].js", | ||
dependOn: "supertokensWebsite", | ||
@@ -98,3 +98,3 @@ }, | ||
import: "supertokens-website", | ||
filename: "website.js", | ||
filename: "website.[contenthash].js", | ||
}, | ||
@@ -101,0 +101,0 @@ }, |
1047007