Skip to content

Commit

Permalink
Adds scaffolding for publishing (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncordon authored Oct 24, 2023
1 parent 2fd5fb0 commit 19ffd9d
Show file tree
Hide file tree
Showing 44 changed files with 15,246 additions and 7,507 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
17 changes: 17 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": [
"antlr4",
"antlr4-c3",
"vscode-extension",
"react-codemirror-playground",
"schema-poller"
]
}
10 changes: 10 additions & 0 deletions .changeset/fuzzy-rice-train.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
'@neo4j-cypher/language-server': major
'@neo4j-cypher/language-support': major
'@neo4j-cypher/react-codemirror': major
'@neo4j-cypher/react-codemirror-playground': major
'@neo4j-cypher/schema-poller': major
'@neo4j-cypher/vscode-extension': major
---

First alpha release of the new Neo4j's Cypher Language Support, including syntax highlighting, auto-completion and linting as features
15 changes: 15 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"mode": "pre",
"tag": "next",
"initialVersions": {
"@neo4j-cypher/language-server": "1.0.0",
"@neo4j-cypher/language-support": "1.0.0",
"@neo4j-cypher/react-codemirror": "1.0.0",
"@neo4j-cypher/react-codemirror-playground": "1.0.0",
"@neo4j-cypher/schema-poller": "1.0.0",
"@neo4j-cypher/vscode-extension": "1.0.0",
"antlr4": "4.13.1",
"antlr4-c3": "3.0.1"
},
"changesets": ["fuzzy-rice-train"]
}
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ dist/
esm/
packages/language-support/src/generated-parser/*
jest.config.js
jest.config.cjs
rollup.config.js
index.html
packages/language-support/src/highlighting/semanticAnalysis.js
Expand Down
25 changes: 25 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Node files
node_modules
npm-debug.log

# OSX files
Thumbs.db
.DS_Store

# Turbo folders
.turbo/

# Test files
*.test.ts
*.spec.ts

# Antlr4 generated files
*.interp
*.tokens

# Sourcemap files
*.map
.vscode/
.eslintrc.json
.github/
.git/
11 changes: 6 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@
"args": [
"--extensionDevelopmentPath=${workspaceRoot}/packages/vscode-extension"
],
"outFiles": ["${workspaceRoot}/packages/vscode-extension/dist/**/*.js"],
"outFiles": [
"${workspaceRoot}/packages/vscode-extension/**/*.js",
"${workspaceRoot}/packages/language-support/**/*.cjs",
"${workspaceRoot}/packages/schema-poller/**/*.cjs"
],
"autoAttachChildProcesses": true,
"preLaunchTask": {
"type": "npm",
"script": "watch"
}
"sourceMaps": true
}
],
"type": "pwa-node",
Expand Down
8 changes: 4 additions & 4 deletions LICENSE → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
https://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

Expand Down Expand Up @@ -186,16 +186,16 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2023 Neo4j Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
2 changes: 1 addition & 1 deletion jest.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
module.exports = {
preset: 'ts-jest/presets/js-with-ts',
testEnvironment: 'node',
modulePathIgnorePatterns: ['out', 'e2e_tests', 'dist', 'esm'],
modulePathIgnorePatterns: ['out', 'e2e_tests', 'dist'],
};
Loading

0 comments on commit 19ffd9d

Please sign in to comment.