Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vercel/analytics
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.2.0
Choose a base ref
...
head repository: vercel/analytics
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.2.1
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 19, 2024

  1. fix: incorrect package exports (#133)

    feugy authored Feb 19, 2024
    Copy the full SHA
    b4e0ec5 View commit details
Showing with 13 additions and 13 deletions.
  1. +13 −13 packages/web/package.json
26 changes: 13 additions & 13 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vercel/analytics",
"version": "1.2.0",
"version": "1.2.1",
"description": "Gain real-time traffic insights with Vercel Web Analytics",
"keywords": [
"analytics",
@@ -14,29 +14,29 @@
"exports": {
"./package.json": "./package.json",
".": {
"browser": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
"browser": "./dist/index.mjs",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"browser": "./dist/react/index.js",
"import": "./dist/react/index.js",
"require": "./dist/react/index.cjs"
"browser": "./dist/react/index.mjs",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.js"
},
"./next": {
"browser": "./dist/next/index.mjs",
"import": "./dist/next/index.mjs",
"require": "./dist/next/index.js"
},
"./server": {
"node": "./dist/server/index.js",
"edge-light": "./dist/server/index.js",
"import": "./dist/server/index.js",
"require": "./dist/server/index.cjs",
"default": "./dist/server/index.cjs"
"node": "./dist/server/index.mjs",
"edge-light": "./dist/server/index.mjs",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"main": "./dist/index.js",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {