-
Notifications
You must be signed in to change notification settings - Fork 83
Jiden/create generator sprotty 257 #342
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
Merged
spoenemann
merged 8 commits into
eclipse-sprotty:master
from
jonah-iden:jiden/create-generator-sprotty-257
Feb 27, 2023
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
84d3fd5
basic generator implemented
jonah-iden c462ee1
basic generator implemented
jonah-iden fa43a58
sprotty generator working and added optional static content
jonah-iden 1094d9b
fixed some template parts.
jonah-iden 8f74e31
forgotten files
jonah-iden 48ae42e
review changes
jonah-iden ff60c1f
gfontorbes review comments
jonah-iden 2926631
review changes:
jonah-iden File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
app/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Langium Package Generator | ||
|
||
This [Yeoman](https://yeoman.io) generator is used to create a new Sprotty project. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"name": "generator-sprotty", | ||
"version": "0.13.0", | ||
"description": "Yeoman generator for Sprotty", | ||
"engines": { | ||
"node": ">=14.0.0" | ||
}, | ||
"keywords": [ | ||
"yeoman-generator", | ||
"diagram" | ||
], | ||
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)", | ||
"files": [ | ||
"app", | ||
"sprotty-local-template", | ||
"src" | ||
], | ||
"main": "app/index.js", | ||
"types": "app/index.d.ts", | ||
"scripts": { | ||
"prepare": "yarn run clean && yarn run build", | ||
"clean": "rimraf app", | ||
"build": "tsc --skipLibCheck", | ||
"watch": "tsc --watch --skipLibCheck", | ||
"lint": "eslint src test --ext .ts", | ||
"run": "yo sprotty", | ||
"debug": "npx --node-arg=--inspect yo sprotty", | ||
"test:cli": "ts-mocha \"./src/**/*.spec.?(ts|tsx)\"", | ||
"test": "jenkins-mocha --config ../../configs/.mocharc.json \"./src/**/*.spec.?(ts|tsx)\"" | ||
}, | ||
"dependencies": { | ||
"chalk": "~4.1.2", | ||
"lodash": "~4.17.21", | ||
"which": "~2.0.2", | ||
"yeoman-generator": "~5.8.0" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash": "~4.14.191", | ||
"@types/which": "~2.0.1", | ||
"@types/yeoman-generator": "~5.2.11", | ||
"@types/yeoman-test": "~4.0.3", | ||
"yeoman-test": "~7.3.0", | ||
"rimraf": "4.1.2" | ||
}, | ||
"volta": { | ||
"node": "16.19.0", | ||
"npm": "8.19.3" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/eclipse-sprotty/sprotty", | ||
"directory": "packages/generator-sprotty" | ||
}, | ||
"author": { | ||
"name": "TypeFox", | ||
"url": "https://www.typefox.io" | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.