Skip to content

Commit

Permalink
Merge pull request #64 from erayerdin/dev
Browse files Browse the repository at this point in the history
v0.6.4
  • Loading branch information
erayerdin authored Feb 3, 2024
2 parents b04e0a1 + a3d201c commit 6637e21
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
14 changes: 12 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firereact",
"version": "0.6.3",
"version": "0.6.4",
"description": "React hooks, components and utils for Firebase",
"type": "module",
"main": "dist/index.cjs.js",
Expand Down Expand Up @@ -59,6 +59,7 @@
"happy-dom": "^13.2.0",
"jsdom": "^23.2.0",
"prettier": "^3.2.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"sleep-sleep": "^1.1.6",
"typescript": "^5.3.3",
"vite": "^5.0.12",
Expand Down
3 changes: 2 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import peerDepsExternal from "rollup-plugin-peer-deps-external";
import { defineConfig } from "vite";
import dts from "vite-plugin-dts";
import { peerDependencies } from "./package.json";
Expand All @@ -16,5 +17,5 @@ export default defineConfig({
sourcemap: true, // Generates source maps for debugging.
emptyOutDir: true, // Clears the output directory before building.
},
plugins: [dts()], // Uses the 'vite-plugin-dts' plugin for generating TypeScript declaration files (d.ts).
plugins: [dts(), peerDepsExternal()], // Uses the 'vite-plugin-dts' plugin for generating TypeScript declaration files (d.ts).
});

0 comments on commit 6637e21

Please sign in to comment.