Skip to content

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohan Bansal committed Jul 9, 2024
1 parent 78a3b57 commit eb16ab5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 17 deletions.
4 changes: 2 additions & 2 deletions atable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
"dependencies": {
"@stonecrop/themes": "workspace:*",
"@stonecrop/utilities": "workspace:*",
"@vueuse/components": "^10.11.0",
"@vueuse/core": "^10.11.0",
"uuid": "^10.0.0",
"vue": "^3.4.31"
},
Expand All @@ -57,8 +59,6 @@
"@vitest/coverage-istanbul": "^1.6.0",
"@vitest/ui": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"@vueuse/components": "^10.9.0",
"@vueuse/core": "^10.11.0",
"cypress": "^13.11.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.11.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/desktop/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': resolve(projectRootDir, 'stories'),
'@': resolve(projectRootDir, 'desktop'),
},
},
server: {
Expand Down
4 changes: 2 additions & 2 deletions examples/graphql_client/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': resolve(projectRootDir, 'stories'),
'@': resolve(projectRootDir, 'graphql_client'),
},
},
server: {
Expand All @@ -19,7 +19,7 @@ export default defineConfig({
build: {
sourcemap: true,
lib: {
entry: resolve(projectRootDir, 'stories/index.ts'),
entry: resolve(projectRootDir, 'graphql_client/index.ts'),
},
rollupOptions: {
external: ['vue'],
Expand Down
1 change: 0 additions & 1 deletion stonecrop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"scripts": {
"prepublish": "heft build && vite build && rushx docs",
"build": "heft build && vite build && rushx docs",
"dev": "vite serve stories/",
"docs": "api-documenter markdown -i temp -o ../docs/stonecrop",
"lint": "eslint . --ext .ts,.vue",
"preview": "vite preview"
Expand Down
11 changes: 1 addition & 10 deletions stonecrop/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,5 @@
"types/*": ["./src/types/*"]
}
},
"include": [
"env.d.ts",
"src/**/*",
"src/**/*.ts",
"src/**/*.vue",
"stories/**/*.ts",
"stories/**/*.vue",
"tests/**/*.ts",
"tests/**/*.vue"
]
"include": ["env.d.ts", "src/**/*", "src/**/*.ts", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.vue"]
}
2 changes: 1 addition & 1 deletion utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"preview": "vite preview"
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"vue": "^3.4.31"
},
"devDependencies": {
Expand All @@ -46,7 +47,6 @@
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vueuse/core": "^10.11.0",
"cypress": "^13.11.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
Expand Down

0 comments on commit eb16ab5

Please sign in to comment.