Hotfix/ Fix failing build due to terser missing (#7294)

* No need to use terser

* v1.1.3

* v1.0.5

* v1.0.10
This commit is contained in:
Hariom Balhara 2023-02-23 18:25:02 +05:30 committed by GitHub
parent e5d44d029a
commit 87dbfba5df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@calcom/embed-core",
"version": "1.1.2",
"version": "1.1.3",
"description": "This is the vanilla JS core script that embeds Cal Link",
"main": "./dist/embed/embed.js",
"types": "./dist/index.d.ts",

View File

@ -1,7 +1,7 @@
{
"name": "@calcom/embed-react",
"sideEffects": false,
"version": "1.0.9",
"version": "1.0.10",
"description": "Embed Cal Link as a React Component",
"license": "SEE LICENSE IN LICENSE",
"repository": {

View File

@ -1,7 +1,7 @@
{
"name": "@calcom/embed-snippet",
"sideEffects": false,
"version": "1.0.4",
"version": "1.0.5",
"main": "./dist/snippet.umd.js",
"module": "./dist/snippet.es.js",
"description": "Vanilla JS embed snippet that is responsible to fetch @calcom/embed-core and thus show Cal Link as an embed on a page.",
@ -25,7 +25,8 @@
"types": "./dist/index.d.ts",
"devDependencies": {
"eslint": "^8.34.0",
"typescript": "^4.9.4"
"typescript": "^4.9.4",
"vite": "^4.1.2"
},
"dependencies": {
"@calcom/embed-core": "*"

View File

@ -11,9 +11,5 @@ module.exports = defineConfig({
name: "snippet",
fileName: (format) => `snippet.${format}.js`,
},
minify: "terser",
terserOptions: {
compress: true,
},
},
});