Skip to content

Commit 99e58c7

Browse files
committed
Bump version
1 parent 68d3fbe commit 99e58c7

File tree

4 files changed

+20
-18
lines changed

4 files changed

+20
-18
lines changed

caido.config.ts

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { defineConfig } from '@caido-community/dev';
2-
import vue from '@vitejs/plugin-vue';
1+
import { defineConfig } from "@caido-community/dev";
2+
import vue from "@vitejs/plugin-vue";
33
import tailwindcss from "tailwindcss";
44
// @ts-expect-error no declared types at this time
55
import tailwindPrimeui from "tailwindcss-primeui";
@@ -10,7 +10,7 @@ export default defineConfig({
1010
id: "devtools",
1111
name: "Devtools",
1212
description: "Hot-reloading for faster Caido plugin development",
13-
version: "0.0.1",
13+
version: "0.0.2",
1414
author: {
1515
name: "Caido Labs Inc.",
1616
@@ -23,18 +23,18 @@ export default defineConfig({
2323
root: "packages/backend",
2424
},
2525
{
26-
kind: 'frontend',
26+
kind: "frontend",
2727
id: "frontend",
28-
root: 'packages/frontend',
28+
root: "packages/frontend",
2929
backend: {
3030
id: "backend",
3131
},
3232
vite: {
3333
plugins: [vue()],
3434
build: {
3535
rollupOptions: {
36-
external: ['@caido/frontend-sdk']
37-
}
36+
external: ["@caido/frontend-sdk"],
37+
},
3838
},
3939
resolve: {
4040
alias: [
@@ -52,25 +52,24 @@ export default defineConfig({
5252
preflight: false,
5353
},
5454
content: [
55-
'./packages/frontend/src/**/*.{vue,ts}',
56-
'./node_modules/@caido/primevue/dist/primevue.mjs'
55+
"./packages/frontend/src/**/*.{vue,ts}",
56+
"./node_modules/@caido/primevue/dist/primevue.mjs",
5757
],
5858
// Check the [data-mode="dark"] attribute on the <html> element to determine the mode
5959
// This attribute is set in the Caido core application
6060
darkMode: ["selector", '[data-mode="dark"]'],
6161
plugins: [
62-
6362
// This plugin injects the necessary Tailwind classes for PrimeVue components
6463
tailwindPrimeui,
6564

6665
// This plugin injects the necessary Tailwind classes for the Caido theme
6766
tailwindCaido,
6867
],
69-
})
70-
]
71-
}
72-
}
73-
}
74-
}
75-
]
68+
}),
69+
],
70+
},
71+
},
72+
},
73+
},
74+
],
7675
});

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "devtools",
3-
"version": "0.0.1",
3+
"version": "0.0.0",
4+
"private": true,
45
"description": "Companion plugin for Caido plugin development",
56
"author": {
67
"name": "Caido Labs Inc.",

packages/backend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "backend",
33
"version": "0.0.0",
4+
"private": true,
45
"type": "module",
56
"types": "src/index.ts",
67
"scripts": {

packages/frontend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "frontend",
33
"version": "0.0.0",
4+
"private": true,
45
"type": "module",
56
"scripts": {
67
"typecheck": "vue-tsc --noEmit"

0 commit comments

Comments
 (0)