-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from kieler/nre/prettier
Prettier
- Loading branch information
Showing
113 changed files
with
5,668 additions
and
3,799 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -24,6 +24,6 @@ jobs: | |
with: | ||
node-version: 16.x | ||
- run: yarn | ||
- run: yarn lint | ||
- run: yarn build | ||
- run: yarn lint | ||
- run: yarn test |
This file contains 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,8 @@ | ||
{ | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"useTabs": false, | ||
"tabWidth": 4, | ||
"printWidth": 120 | ||
} |
This file contains 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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": ["dbaeumer.vscode-eslint"] | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode" | ||
] | ||
} |
This file contains 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 |
---|---|---|
@@ -1,69 +1,71 @@ | ||
{ | ||
"name": "@kieler/klighd-cli", | ||
"version": "0.4.2", | ||
"description": "Standalone web view for klighd-core diagrams", | ||
"author": "KIELER <[email protected]>", | ||
"license": "EPL-2.0", | ||
"keywords": [ | ||
"sprotty", | ||
"klighd", | ||
"diagram", | ||
"standalone" | ||
], | ||
"main": "./lib/server.js", | ||
"bin": "./lib/klighd.js", | ||
"files": [ | ||
"lib", | ||
"dist" | ||
], | ||
"scripts": { | ||
"clean": "rimraf lib dist bin", | ||
"lint": "eslint .", | ||
"build": "run-p --print-label \"build:*\"", | ||
"build:app": "webpack --mode production --devtool hidden-source-map", | ||
"build:server": "tsc -p ./tsconfig.server.json", | ||
"watch": "run-p --print-label \"watch:*\"", | ||
"watch:app": "webpack --watch", | ||
"watch:server": "tsc -w -p ./tsconfig.server.json", | ||
"prepackage": "cross-var replace \"@VERSION@\" $npm_package_version ./lib/version.js", | ||
"package": "pkg -c pkg.json ./lib/klighd.js", | ||
"start": "node ./lib/main.js", | ||
"socket": "node ./lib/main.js --ls_port=5007" | ||
}, | ||
"dependencies": { | ||
"@kieler/klighd-core": "^0.4.2", | ||
"buffer": "^6.0.3", | ||
"commander": "^8.1.0", | ||
"crypto-browserify": "^3.12.0", | ||
"fastify": "^3.15.0", | ||
"fastify-static": "^4.0.1", | ||
"fastify-websocket": "^3.1.0", | ||
"get-port": "^5.1.1", | ||
"net": "^1.0.2", | ||
"open": "^7.4.2", | ||
"os-browserify": "^0.3.0", | ||
"pino-pretty": "^4.7.1", | ||
"reflect-metadata": "^0.2.1", | ||
"setimmediate": "^1.0.5", | ||
"stream-browserify": "^3.0.0", | ||
"vscode-languageserver-protocol": "^3.17.5", | ||
"vscode-ws-jsonrpc": "^0.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/ws": "^7.4.4", | ||
"clean-webpack-plugin": "^4.0.0", | ||
"cross-var": "^1.1.0", | ||
"css-loader": "^6.8.1", | ||
"file-loader": "6.2.0", | ||
"html-webpack-plugin": "^5.6.0", | ||
"mini-css-extract-plugin": "^2.7.6", | ||
"node-polyfill-webpack-plugin": "^3.0.0", | ||
"npm-run-all": "^4.1.5", | ||
"pkg": "^5.8.1", | ||
"replace": "^1.2.2", | ||
"rimraf": "^4.4.0", | ||
"ts-loader": "^9.5.1", | ||
"webpack": "^5.89.0", | ||
"webpack-cli": "^5.1.4" | ||
} | ||
"name": "@kieler/klighd-cli", | ||
"version": "0.4.2", | ||
"description": "Standalone web view for klighd-core diagrams", | ||
"author": "KIELER <[email protected]>", | ||
"license": "EPL-2.0", | ||
"keywords": [ | ||
"sprotty", | ||
"klighd", | ||
"diagram", | ||
"standalone" | ||
], | ||
"main": "./lib/server.js", | ||
"bin": "./lib/klighd.js", | ||
"files": [ | ||
"lib", | ||
"dist" | ||
], | ||
"scripts": { | ||
"clean": "rimraf lib dist bin", | ||
"lint": "eslint .", | ||
"build": "run-p --print-label \"build:*\"", | ||
"build:app": "webpack --mode production --devtool hidden-source-map", | ||
"build:server": "tsc -p ./tsconfig.server.json", | ||
"watch": "run-p --print-label \"watch:*\"", | ||
"watch:app": "webpack --watch", | ||
"watch:server": "tsc -w -p ./tsconfig.server.json", | ||
"prepackage": "cross-var replace \"@VERSION@\" $npm_package_version ./lib/version.js", | ||
"package": "pkg -c pkg.json ./lib/klighd.js", | ||
"start": "node ./lib/main.js", | ||
"socket": "node ./lib/main.js --ls_port=5007" | ||
}, | ||
"dependencies": { | ||
"@kieler/klighd-core": "^0.4.2", | ||
"buffer": "^6.0.3", | ||
"commander": "^8.1.0", | ||
"crypto-browserify": "^3.12.0", | ||
"fastify": "^3.15.0", | ||
"fastify-static": "^4.0.1", | ||
"fastify-websocket": "^3.1.0", | ||
"get-port": "^5.1.1", | ||
"net": "^1.0.2", | ||
"open": "^7.4.2", | ||
"os-browserify": "^0.3.0", | ||
"pino-pretty": "^4.7.1", | ||
"reflect-metadata": "^0.2.1", | ||
"setimmediate": "^1.0.5", | ||
"sprotty-protocol": "^1.1.0", | ||
"stream-browserify": "^3.0.0", | ||
"vscode-languageserver-protocol": "^3.17.5", | ||
"vscode-ws-jsonrpc": "^0.2.0", | ||
"ws": "^8.16.0" | ||
}, | ||
"devDependencies": { | ||
"@types/ws": "^7.4.4", | ||
"clean-webpack-plugin": "^4.0.0", | ||
"cross-var": "^1.1.0", | ||
"css-loader": "^6.8.1", | ||
"file-loader": "6.2.0", | ||
"html-webpack-plugin": "^5.6.0", | ||
"mini-css-extract-plugin": "^2.7.6", | ||
"node-polyfill-webpack-plugin": "^3.0.0", | ||
"npm-run-all": "^4.1.5", | ||
"pkg": "^5.8.1", | ||
"replace": "^1.2.2", | ||
"rimraf": "^4.4.0", | ||
"ts-loader": "^9.5.1", | ||
"webpack": "^5.89.0", | ||
"webpack-cli": "^5.1.4" | ||
} | ||
} |
This file contains 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
Oops, something went wrong.