Skip to content

Commit 5e1ba3d

Browse files
committed
Updated snippets prefix. Updated changelog.
1 parent 6517b1c commit 5e1ba3d

10 files changed

+260
-90
lines changed

.vscodeignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
.vscode-test/**
33
out/**
44
src/**
5+
static-to-copy/**
56
.gitignore
67
.yarnrc
78
vsc-extension-quickstart.md
89
**/tsconfig.json
910
**/.eslintrc.json
1011
**/*.map
1112
**/*.ts
13+
.metals/**
14+
build/**

CHANGELOG.md

+24-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,30 @@
11
# Change Log
22

3-
All notable changes to the "vscode-cse-framework" extension will be documented in this file.
3+
All notable changes to this project will be documented in this file.
44

5-
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
5+
The format is based on [Keep a Changelog][Keep a Changelog] and this project adheres to [Semantic Versioning][Semantic Versioning].
66

77
## [Unreleased]
88

9-
- Initial release
9+
---
10+
11+
## [0.0.1] - 2021-01-02
12+
13+
### Added
14+
15+
- First version.
16+
17+
---
18+
19+
## [Released]
20+
21+
---
22+
23+
<!-- Links -->
24+
[Keep a Changelog]: https://keepachangelog.com/
25+
[Semantic Versioning]: https://semver.org/
26+
27+
<!-- Versions -->
28+
[Unreleased]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v1.0.0...HEAD
29+
[0.0.2]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.1..v0.0.2
30+
[0.0.1]: https://github.com/computer-science-engineering/vscode-cse-framework/releases/tag/v0.0.1

README.md

+2-64
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,3 @@
1-
# vscode-cse-framework README
1+
# vscode-cse-framework
22

3-
VSCode extension for cse repositories - provides templates, snippets, etc.
4-
5-
## Features
6-
7-
Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.
8-
9-
For example if there is an image subfolder under your extension project workspace:
10-
11-
\!\[feature X\]\(images/feature-x.png\)
12-
13-
> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
14-
15-
## Requirements
16-
17-
If you have any requirements or dependencies, add a section describing those and how to install and configure them.
18-
19-
## Extension Settings
20-
21-
Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.
22-
23-
For example:
24-
25-
This extension contributes the following settings:
26-
27-
* `myExtension.enable`: enable/disable this extension
28-
* `myExtension.thing`: set to `blah` to do something
29-
30-
## Known Issues
31-
32-
Calling out known issues can help limit users opening duplicate issues against your extension.
33-
34-
## Release Notes
35-
36-
Users appreciate release notes as you update your extension.
37-
38-
### 1.0.0
39-
40-
Initial release of ...
41-
42-
### 1.0.1
43-
44-
Fixed issue #.
45-
46-
### 1.1.0
47-
48-
Added features X, Y, and Z.
49-
50-
-----------------------------------------------------------------------------------------------------------
51-
52-
## Working with Markdown
53-
54-
**Note:** You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
55-
56-
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux)
57-
* Toggle preview (`Shift+CMD+V` on macOS or `Shift+Ctrl+V` on Windows and Linux)
58-
* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (macOS) to see a list of Markdown snippets
59-
60-
### For more information
61-
62-
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
63-
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
64-
65-
**Enjoy!**
3+
VSCode extension for [cse repositories](https://github.com/computer-science-engineering) - provides templates, snippets, project scaffolding, etc.

build/node-extension.webpack.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
const path = require('path');
66
const CopyPlugin = require("copy-webpack-plugin");
7+
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
78

89
/**@type {import('webpack').Configuration}*/
910
const config = {
@@ -38,7 +39,8 @@ const config = {
3839
}
3940
]
4041
},
41-
plugins: [
42+
plugins: [
43+
new CleanWebpackPlugin(),
4244
// @ts-ignore
4345
new CopyPlugin({
4446
patterns: [

0 commit comments

Comments
 (0)