Skip to content

Commit a8c7ae8

Browse files
committed
Cleanup comments
1 parent dbdb0e2 commit a8c7ae8

File tree

4 files changed

+27
-43
lines changed

4 files changed

+27
-43
lines changed

CHANGELOG.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
11
# Change Log
2-
All notable changes to the "aws-step-functions-constructor" extension will be documented in this file.
3-
4-
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
5-
6-
## [Unreleased]
7-
- Initial release

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@
3636
"postinstall": "node ./node_modules/vscode/bin/install",
3737
"test": "npm run compile && node ./node_modules/vscode/bin/test"
3838
},
39+
"dependencies": {
40+
"dagre": "^0.8.5",
41+
"dagre-d3": "^0.6.4",
42+
"js-yaml": "^3.13.1",
43+
"json-source-map": "^0.6.1",
44+
"lodash": "^4.17.20",
45+
"ramda": "^0.27.1",
46+
"uuid": "^8.3.2"
47+
},
3948
"devDependencies": {
4049
"@types/dagre-d3": "^0.6.2",
4150
"@types/js-yaml": "^3.11.2",
@@ -50,14 +59,5 @@
5059
"vscode": "^1.1.37",
5160
"webpack": "^5.3.1",
5261
"webpack-cli": "^4.1.0"
53-
},
54-
"dependencies": {
55-
"dagre": "^0.8.5",
56-
"dagre-d3": "^0.6.4",
57-
"js-yaml": "^3.13.1",
58-
"json-source-map": "^0.6.1",
59-
"lodash": "^4.17.20",
60-
"ramda": "^0.27.1",
61-
"uuid": "^8.3.2"
6262
}
6363
}

tsconfig.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
"lib": ["es6"],
77
"sourceMap": true,
88
"rootDir": "src"
9-
/* Strict Type-Checking Option */
10-
// "strict": true, /* enable all strict type-checking options */
11-
/* Additional Checks */
12-
// "noUnusedLocals": true /* Report errors on unused locals. */
13-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
14-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
15-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
169
},
1710
"exclude": ["node_modules", ".vscode-test"]
1811
}

webpack.config.js

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
11
//@ts-check
22

3-
'use strict';
3+
"use strict";
44

5-
const path = require('path');
5+
const path = require("path");
66

77
/**@type {import('webpack').Configuration}*/
88
const config = {
9-
target: 'node', // vscode extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/
10-
11-
entry: './src/extension.ts', // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
9+
target: "node",
10+
entry: "./src/extension.ts",
1211
output: {
13-
// the bundle is stored in the 'dist' folder (check package.json), 📖 -> https://webpack.js.org/configuration/output/
14-
path: path.resolve(__dirname, 'dist'),
15-
filename: 'extension.js',
16-
libraryTarget: 'commonjs2',
17-
devtoolModuleFilenameTemplate: '../[resource-path]'
12+
path: path.resolve(__dirname, "dist"),
13+
filename: "extension.js",
14+
libraryTarget: "commonjs2",
15+
devtoolModuleFilenameTemplate: "../[resource-path]",
1816
},
19-
devtool: 'source-map',
17+
devtool: "source-map",
2018
externals: {
21-
vscode: 'commonjs vscode' // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
19+
vscode: "commonjs vscode",
2220
},
2321
resolve: {
24-
// support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader
25-
extensions: ['.ts', '.js']
22+
extensions: [".ts", ".js"],
2623
},
2724
module: {
2825
rules: [
@@ -31,11 +28,11 @@ const config = {
3128
exclude: /node_modules/,
3229
use: [
3330
{
34-
loader: 'ts-loader'
35-
}
36-
]
37-
}
38-
]
39-
}
31+
loader: "ts-loader",
32+
},
33+
],
34+
},
35+
],
36+
},
4037
};
41-
module.exports = config;
38+
module.exports = config;

0 commit comments

Comments
 (0)