Skip to content

Commit

Permalink
bump packages for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
sqs committed Dec 28, 2023
1 parent ebf36ee commit c595293
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion client/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@opencodegraph/browser-extension",
"version": "0.0.3",
"version": "0.0.4",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion client/codemirror/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/codemirror-extension",
"version": "0.0.3",
"version": "0.0.4",
"description": "OpenCodeGraph extension for CodeMirror",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion lib/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/client",
"version": "0.0.2",
"version": "0.0.3",
"description": "OpenCodeGraph client library",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion lib/protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/protocol",
"version": "0.0.1",
"version": "0.0.2",
"description": "OpenCodeGraph client/provider protocol",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion lib/provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/provider",
"version": "0.0.2",
"version": "0.0.3",
"description": "OpenCodeGraph provider library",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion lib/schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/schema",
"version": "0.0.1",
"version": "0.0.2",
"description": "OpenCodeGraph schema",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion lib/ui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/ui-react",
"version": "0.0.1",
"version": "0.0.2",
"description": "OpenCodeGraph React UI library",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion lib/ui-standalone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/ui-standalone",
"version": "0.0.1",
"version": "0.0.2",
"description": "OpenCodeGraph standalone UI library",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion provider/links/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/provider-links",
"version": "0.0.4",
"version": "0.0.5",
"description": "Add links to your code based on configurable patterns (OpenCodeGraph provider)",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion provider/prometheus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/provider-prometheus",
"version": "0.0.2",
"version": "0.0.3",
"description": "Hover over a Prometheus metric to see what it's doing in prod (OpenCodeGraph provider)",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion provider/storybook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opencodegraph/provider-storybook",
"version": "0.0.2",
"version": "0.0.3",
"description": "Add Storybook links and image previews to your code (OpenCodeGraph provider)",
"license": "Apache-2.0",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions web/pages/playground/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function providerBundleUrl(packageName: string, importUrl: string): string {

const settings = {
'opencodegraph.providers': {
[providerBundleUrl('@opencodegraph/[email protected].4', providerLinksUrl)]: {
[providerBundleUrl('@opencodegraph/[email protected].5', providerLinksUrl)]: {
links: [
{
title: 'Telemetry',
Expand All @@ -73,7 +73,7 @@ const settings = {
},
],
} satisfies import('@opencodegraph/provider-links').Settings,
[providerBundleUrl('@opencodegraph/[email protected].2', providerPrometheusUrl)]: {
[providerBundleUrl('@opencodegraph/[email protected].3', providerPrometheusUrl)]: {
metricRegistrationPatterns: [
{
path: '**/*.ts?(x)',
Expand All @@ -82,7 +82,7 @@ const settings = {
},
],
} satisfies import('@opencodegraph/provider-prometheus').Settings,
[providerBundleUrl('@opencodegraph/[email protected].2', providerStorybookUrl)]: {
[providerBundleUrl('@opencodegraph/[email protected].3', providerStorybookUrl)]: {
storybookUrl: 'https://daeeaa811098f52f15a110dbaf76b6c416191c3b--5f0f381c0e50750022dc6bf7.chromatic.com/', // this is a public URL because our storybooks are public
} satisfies import('@opencodegraph/provider-storybook').Settings,
},
Expand Down

0 comments on commit c595293

Please sign in to comment.