Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grammar package #197

Merged
merged 30 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
24ad770
initial package structure
FilippoTrotter Aug 23, 2024
08543f5
change example to slangroom
FilippoTrotter Aug 23, 2024
2d278b7
fix: scenario statement
FilippoTrotter Aug 23, 2024
182581e
update makefile
FilippoTrotter Aug 23, 2024
31700f6
add first simple tests
FilippoTrotter Aug 23, 2024
c71a1bb
fix: add License
FilippoTrotter Aug 26, 2024
23865a3
fix: given have statement
FilippoTrotter Aug 26, 2024
f98d7f5
fix: send can be optional
FilippoTrotter Aug 26, 2024
d07c232
fix: ethereum actions
FilippoTrotter Aug 26, 2024
51e8efe
fix: Helpers send
FilippoTrotter Aug 26, 2024
2d36ca8
update keywords list
FilippoTrotter Aug 26, 2024
4aee312
update Given name statement
FilippoTrotter Aug 26, 2024
8382eda
fix: add the possibility of having more than one scenario
FilippoTrotter Aug 26, 2024
f0e1862
update test list
FilippoTrotter Aug 26, 2024
60967e3
add some others test from didroom
FilippoTrotter Aug 27, 2024
4ff3d20
add grammar test to github actions
FilippoTrotter Aug 27, 2024
25db990
fix(grammar): add missing syntax.grammar.d.ts file
matteo-cristino Aug 28, 2024
9ff39db
chore(grammar): remove package-lock since using pnpm
matteo-cristino Aug 28, 2024
a05616b
chore: add grammar to workspace
matteo-cristino Aug 28, 2024
f1ab7b6
chore(grammar): remove capital letter from package name
matteo-cristino Aug 28, 2024
b06f287
chore: add test:grammar command to test grammar
matteo-cristino Aug 28, 2024
95be7e5
ci: update grammar test
matteo-cristino Aug 28, 2024
edee98c
refactor(grammar): remove unused Makefile
matteo-cristino Aug 28, 2024
650f7d4
chore: add missing license headers
matteo-cristino Aug 28, 2024
473f58f
chore: add grammar package acknowledgement in the readme
matteo-cristino Aug 28, 2024
a289008
chore: Give to Cesar what is to Cesar
puria Aug 28, 2024
891af63
feat(grammar): publish npm package on main merge
puria Aug 28, 2024
6db7c5d
pnpm-lock ❗
puria Aug 28, 2024
94c4506
fix(grammar): read also subpath for CI action trigger
puria Aug 28, 2024
8e43f56
Merge branch 'main' into grammar-package
puria Aug 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/grammar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
push:
branches:
- main
paths: [ "grammar" ]
paths: [ "grammar/**" ]

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion grammar/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codemirror-lang-slangroom",
"version": "0.1.0",
"description": "Slangroom language support for CodeMirror",
"description": "Slangroom lezer grammar",
"scripts": {
"test": "mocha test/test.js",
"prepare": "rollup -c"
Expand Down
Loading