@neo4j-cypher/react-codemirror
Advanced tools
Comparing version 2.0.0-canary-8399843 to 2.0.0-canary-8a63a35
@@ -1,4 +0,4 @@ | ||
export { CypherParser } from '@neo4j-cypher/language-support'; | ||
export { CypherParser, _internalFeatureFlags, } from '@neo4j-cypher/language-support'; | ||
export { CypherEditor } from './CypherEditor'; | ||
export { cypher } from './lang-cypher/langCypher'; | ||
export { darkThemeConstants, lightThemeConstants } from './themes'; |
@@ -1,2 +0,2 @@ | ||
export { CypherParser } from '@neo4j-cypher/language-support'; | ||
export { CypherParser, _internalFeatureFlags, } from '@neo4j-cypher/language-support'; | ||
export { CypherEditor } from './CypherEditor'; | ||
@@ -3,0 +3,0 @@ export { cypher } from './lang-cypher/langCypher'; |
import { defineLanguageFacet, Language, LanguageSupport, } from '@codemirror/language'; | ||
import { setConsoleCommandsEnabled, } from '@neo4j-cypher/language-support'; | ||
import { _internalFeatureFlags, } from '@neo4j-cypher/language-support'; | ||
import { cypherAutocomplete } from './autocomplete'; | ||
@@ -12,3 +12,3 @@ import { ParserAdapter } from './parser-adapter'; | ||
export function cypher(config) { | ||
setConsoleCommandsEnabled(true); | ||
_internalFeatureFlags.consoleCommands = true; | ||
const parserAdapter = new ParserAdapter(facet, config); | ||
@@ -15,0 +15,0 @@ const cypherLanguage = new Language(facet, parserAdapter, [], 'cypher'); |
@@ -20,3 +20,3 @@ { | ||
], | ||
"version": "2.0.0-canary-8399843", | ||
"version": "2.0.0-canary-8a63a35", | ||
"main": "./dist/index.js", | ||
@@ -55,3 +55,3 @@ "types": "./dist/index.d.ts", | ||
"@lezer/highlight": "^1.1.3", | ||
"@neo4j-cypher/language-support": "2.0.0-canary-8399843", | ||
"@neo4j-cypher/language-support": "2.0.0-canary-8a63a35", | ||
"@types/prismjs": "^1.26.3", | ||
@@ -58,0 +58,0 @@ "@types/workerpool": "^6.4.7", |
@@ -1,4 +0,7 @@ | ||
export { CypherParser } from '@neo4j-cypher/language-support'; | ||
export { | ||
CypherParser, | ||
_internalFeatureFlags, | ||
} from '@neo4j-cypher/language-support'; | ||
export { CypherEditor } from './CypherEditor'; | ||
export { cypher } from './lang-cypher/langCypher'; | ||
export { darkThemeConstants, lightThemeConstants } from './themes'; |
@@ -7,3 +7,3 @@ import { | ||
import { | ||
setConsoleCommandsEnabled, | ||
_internalFeatureFlags, | ||
type DbSchema, | ||
@@ -29,3 +29,3 @@ } from '@neo4j-cypher/language-support'; | ||
export function cypher(config: CypherConfig) { | ||
setConsoleCommandsEnabled(true); | ||
_internalFeatureFlags.consoleCommands = true; | ||
const parserAdapter = new ParserAdapter(facet, config); | ||
@@ -32,0 +32,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
582667
7491
30
+ Added@neo4j-cypher/language-support@2.0.0-canary-8a63a35(transitive)
- Removed@neo4j-cypher/language-support@2.0.0-canary-8399843(transitive)