Skip to content

Commit

Permalink
Fix incorrect exports (#130)
Browse files Browse the repository at this point in the history
* remove uiw

* changeset
  • Loading branch information
OskarDamkjaer authored Oct 25, 2023
1 parent 8b303ce commit e372093
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 77 deletions.
6 changes: 6 additions & 0 deletions .changeset/brown-ravens-obey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@neo4j-cypher/react-codemirror-playground': patch
'@neo4j-cypher/react-codemirror': patch
---

Fix incorrect exports
2 changes: 1 addition & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"antlr4": "4.13.1",
"antlr4-c3": "3.0.1"
},
"changesets": ["fuzzy-rice-train"]
"changesets": ["brown-ravens-obey", "fuzzy-rice-train"]
}
71 changes: 0 additions & 71 deletions package-lock.json

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

8 changes: 8 additions & 0 deletions packages/react-codemirror-playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @neo4j-cypher/react-codemirror-playground

## 2.0.0-next.1

### Patch Changes

- Fix incorrect exports
- Updated dependencies
- @neo4j-cypher/react-codemirror@2.0.0-next.1

## 2.0.0-next.0

### Major Changes
Expand Down
5 changes: 2 additions & 3 deletions packages/react-codemirror-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@neo4j-cypher/react-codemirror-playground",
"private": true,
"version": "2.0.0-next.0",
"version": "2.0.0-next.1",
"type": "module",
"scripts": {
"dev": "vite --open",
Expand All @@ -21,13 +21,12 @@
},
"dependencies": {
"@neo4j-cypher/language-support": "2.0.0-next.0",
"@neo4j-cypher/react-codemirror": "2.0.0-next.0",
"@neo4j-cypher/react-codemirror": "2.0.0-next.1",
"@codemirror/autocomplete": "^6.5.1",
"@codemirror/commands": "^6.2.2",
"@codemirror/language": "^6.6.0",
"@lezer/common": "^1.0.2",
"@lezer/highlight": "^1.1.3",
"@uiw/react-codemirror": "^4.19.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite-plugin-node-stdlib-browser": "^0.2.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/react-codemirror/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @neo4j-cypher/react-codemirror

## 2.0.0-next.1

### Patch Changes

- Fix incorrect exports

## 2.0.0-next.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"codemirror",
"codemirror 6"
],
"version": "2.0.0-next.0",
"version": "2.0.0-next.1",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
Expand Down
1 change: 0 additions & 1 deletion packages/react-codemirror/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export { CypherParser, parse } from '@neo4j-cypher/language-support';
export * as ReactCodemirror from '@uiw/react-codemirror';
export { CypherEditor } from './CypherEditor';
export { cypher } from './lang-cypher/lang-cypher';
export { darkThemeConstants, lightThemeConstants } from './themes';

0 comments on commit e372093

Please sign in to comment.