Skip to content

Commit 1e54d15

Browse files
committed
removes Jekyll Syntax as a dependency
1 parent ae73ef6 commit 1e54d15

File tree

2 files changed

+91
-77
lines changed

2 files changed

+91
-77
lines changed

CHANGELOG.md

Lines changed: 48 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,88 @@
11
# Change Log
2+
23
All notable changes to the "jekyll-snippets" extension will be documented in this file.
34

5+
## V 0.9.2 02-20-2020
6+
7+
- removes Jekyll Syntax as a dependency -- I do suggest using [Liquid Language Support](https://marketplace.visualstudio.com/items?itemName=neilding.language-liquid) over-top of Jekyll Syntax 😬
8+
49
## V 0.9.1 02-18-2019
5-
* fixes typos introduced in `V0.9.0` - thanks to [@kravenoff42](https://github.com/kravenoff42) for the catch
10+
11+
- fixes typos introduced in `V0.9.0` - thanks to [@kravenoff42](https://github.com/kravenoff42) for the catch
612

713
## V 0.9.0 09-28-2018
8-
* adds whitespace control for some control flow, comments, iterations and variables.
14+
15+
- adds whitespace control for some control flow, comments, iterations and variables.
916

1017
## V 0.8.7 11-14-2017
11-
* miss spelled snippet fixed by [@KrisvanderMast](https://github.com/KrisvanderMast) on pull-request [#10](https://github.com/ginfuru/vscode-jekyll-snippets/pull/10)
18+
19+
- miss spelled snippet fixed by [@KrisvanderMast](https://github.com/KrisvanderMast) on pull-request [#10](https://github.com/ginfuru/vscode-jekyll-snippets/pull/10)
1220

1321
## V 0.8.6 10-09-2017
14-
* removes `.liquid` lang support
15-
* you should download [Liquid Languages Suport](https://marketplace.visualstudio.com/items?itemName=neilding.language-liquid) if you want need liquid snippets outside the support that Jekyll uses
22+
23+
- removes `.liquid` lang support
24+
- you should download [Liquid Languages Suport](https://marketplace.visualstudio.com/items?itemName=neilding.language-liquid) if you want need liquid snippets outside the support that Jekyll uses
1625

1726
## V 0.8.5 10-09-2017
18-
* Added `.jekyll` lang support
27+
28+
- Added `.jekyll` lang support
1929

2030
## V 0.8.4 _(10-02-2017)_
21-
* fixed image in readme
31+
32+
- fixed image in readme
2233

2334
## V 0.8.3 _(10-02-2017)_
24-
* update `extensionDependencies` to [Jekyll Syntax Support](https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-vscode-jekyll-syntax)
35+
36+
- update `extensionDependencies` to [Jekyll Syntax Support](https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-vscode-jekyll-syntax)
2537

2638
## V 0.8.2 _(09-06-2017)_
27-
* added jsonify and fixed a few snippets
39+
40+
- added jsonify and fixed a few snippets
2841

2942
## V 0.8.1 _(05-21-2017)_
30-
* updated readme to reflex the issue with formating repored from issue #8
43+
44+
- updated readme to reflex the issue with formating repored from issue #8
3145

3246
## V 0.8.0 _(04-21-2017)_
33-
* added HTML support due to odd behavior from other extensions not recognizing Liquid
47+
48+
- added HTML support due to odd behavior from other extensions not recognizing Liquid
3449

3550
## V 0.7.0 _(04-06-2017)_
36-
* removed single quote from include snippet
51+
52+
- removed single quote from include snippet
3753

3854
## V 0.6.0 _(02-20-2017)_
39-
* added markdown support requested from @Haroenv on issue #7
55+
56+
- added markdown support requested from @Haroenv on issue #7
4057

4158
## V 0.5.0 _(02-18-2017)_
42-
* merged the pull request from @thierrymichel
59+
60+
- merged the pull request from @thierrymichel
4361

4462
## V 0.4.0 _(01-23-2017)_
45-
* updated the `CHANGELOG.md`
46-
* added date variable
63+
64+
- updated the `CHANGELOG.md`
65+
- added date variable
4766

4867
## V 0.3.2 _(01-23-2017)_
49-
* Added `extensionDependencies` support to the package manifest
50-
* This will now prompt/inform you that the `Liquid Language Support` extension is needed and will ask you if you want to download it.
68+
69+
- Added `extensionDependencies` support to the package manifest
70+
- This will now prompt/inform you that the `Liquid Language Support` extension is needed and will ask you if you want to download it.
5171

5272
## V 0.3.1 _(1.4.17)_
53-
* minor release to keep github release/tags in sync with `vsce minor` update
73+
74+
- minor release to keep github release/tags in sync with `vsce minor` update
5475

5576
## V 0.3.0 _(1.4.17)_
56-
* published to market place
77+
78+
- published to market place
5779

5880
## V 0.0.2
59-
* preparing extension for publishing to market place
81+
82+
- preparing extension for publishing to market place
6083

6184
## V 0.0.1 _(12.30.16)_
62-
* Initial release
63-
* added front-matter snippets
64-
* renamed prefixes to match atom editor
85+
86+
- Initial release
87+
- added front-matter snippets
88+
- renamed prefixes to match atom editor

package.json

Lines changed: 43 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,45 @@
11
{
2-
"name": "vscode-jekyll-snippets",
3-
"version": "0.9.1",
4-
"publisher": "ginfuru",
5-
"displayName": "Jekyll Snippets",
6-
"description": "Jekyll snippets for Visual Studio Code",
7-
"icon": "images/jekyll-logo.png",
8-
"galleryBanner": {
9-
"color": "#333333",
10-
"theme": "dark"
11-
},
12-
"engines": {
13-
"vscode": "0.10.x"
14-
},
15-
"categories": [
16-
"Snippets"
17-
],
18-
"keywords": [
19-
"snippets",
20-
"markdown",
21-
"liquid",
22-
"jekyll"
23-
],
24-
"license": "SEE LICENSE IN LICENSE.txt",
25-
"homepage": "https://github.com/ginfuru/vscode-jekyll-snippets",
26-
"repository": {
27-
"type": "git",
28-
"url": "https://github.com/ginfuru/vscode-jekyll-snippets.git"
29-
},
30-
"bugs": "https://github.com/ginfuru/vscode-jekyll-snippets/issues",
31-
"contributes": {
32-
"snippets": [
33-
{
34-
"language": "jekyll",
35-
"path": "./snippets/jekyll.json"
36-
},
37-
{
38-
"language": "html",
39-
"path": "./snippets/jekyll.json"
40-
},
41-
{
42-
"language": "markdown",
43-
"path": "./snippets/jekyll.json"
44-
}
45-
]
46-
},
47-
"extensionDependencies": [
48-
"ginfuru.ginfuru-vscode-jekyll-syntax"
49-
],
50-
"__metadata": {
51-
"id": "7891ba3a-fe11-4e55-bf8f-21479bed022c",
52-
"publisherId": "e4159f93-1b6e-4dd8-b879-3bc62c30dad0",
53-
"publisherDisplayName": "ginfuru"
54-
}
2+
"name": "vscode-jekyll-snippets",
3+
"version": "0.9.1",
4+
"publisher": "ginfuru",
5+
"displayName": "Jekyll Snippets",
6+
"description": "Jekyll snippets for Visual Studio Code",
7+
"icon": "images/jekyll-logo.png",
8+
"galleryBanner": {
9+
"color": "#333333",
10+
"theme": "dark"
11+
},
12+
"engines": {
13+
"vscode": "0.10.x"
14+
},
15+
"categories": [ "Snippets" ],
16+
"keywords": [ "snippets", "markdown", "liquid", "jekyll" ],
17+
"license": "SEE LICENSE IN LICENSE.txt",
18+
"homepage": "https://github.com/ginfuru/vscode-jekyll-snippets",
19+
"repository": {
20+
"type": "git",
21+
"url": "https://github.com/ginfuru/vscode-jekyll-snippets.git"
22+
},
23+
"bugs": "https://github.com/ginfuru/vscode-jekyll-snippets/issues",
24+
"contributes": {
25+
"snippets": [
26+
{
27+
"language": "jekyll",
28+
"path": "./snippets/jekyll.json"
29+
},
30+
{
31+
"language": "html",
32+
"path": "./snippets/jekyll.json"
33+
},
34+
{
35+
"language": "markdown",
36+
"path": "./snippets/jekyll.json"
37+
}
38+
]
39+
},
40+
"__metadata": {
41+
"id": "7891ba3a-fe11-4e55-bf8f-21479bed022c",
42+
"publisherId": "e4159f93-1b6e-4dd8-b879-3bc62c30dad0",
43+
"publisherDisplayName": "ginfuru"
44+
}
5545
}

0 commit comments

Comments
 (0)