Hotfix/ Fix failing build due to terser missing (#7294)
* No need to use terser * v1.1.3 * v1.0.5 * v1.0.10pull/7301/head
parent
e5d44d029a
commit
87dbfba5df
|
@ -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",
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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": "*"
|
||||
|
|
|
@ -11,9 +11,5 @@ module.exports = defineConfig({
|
|||
name: "snippet",
|
||||
fileName: (format) => `snippet.${format}.js`,
|
||||
},
|
||||
minify: "terser",
|
||||
terserOptions: {
|
||||
compress: true,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue