Skip to content

Commit

Permalink
release channel changed to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
vklimontovich committed Dec 11, 2023
1 parent 5d6cc1d commit fb3d7b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/next-collect.dev/src/components/ui/installer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const Installer: React.FC<{ className?: string }> = ({ className }) => {
/>
<Command command={`${packageManager} ${packageManager === "npm" ? "install" : "add"} next-collect`}>
<span className="text-red-700">{packageManager}</span> {packageManager === "npm" ? "install" : "add"}{" "}
next-collect
next-collect@beta
</Command>
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build": "pnpm run -r build",
"test": "pnpm run -r test",
"dev": "pnpm run -r --stream --parallel dev",
"release": "pnpm build && monorel --npm-tag latest --filter './packages/next-collect'",
"release": "pnpm build && monorel --npm-tag beta --filter './packages/next-collect'",
"canary:publish": "monorel --filter './packages/next-collect' --version '2.0.0-alpha.{rev}.{time}' --npm-tag canary --publish",
"lint": "pnpm run -r lint",
"format:check": "prettier --check --config ./.prettierrc.json --ignore-path ./.prettierignore .",
Expand Down
3 changes: 2 additions & 1 deletion packages/next-collect/src/client/destinations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ export type TagDestination<T extends Record<string, any> = Record<string, any>>
create: (opts: T) => TagEventHandler
}

export type KnownTagDestination = "ga4" | "gtm"
export type TagSpecification<T extends Record<string, any> = Record<string, any>> = {
type: string | TagDestination<T>
type: KnownTagDestination | string | TagDestination<T>
opts?: T
}

Expand Down

1 comment on commit fb3d7b9

@vercel
Copy link

@vercel vercel bot commented on fb3d7b9 Dec 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.