Skip to content

Commit c58620f

Browse files
authored
Merge pull request #6 from CGWebDev2003/main
[v2.0.0]: Added Neptune JS Snippets and JS + CDNImports
2 parents 50d663d + 5950f26 commit c58620f

18 files changed

+203
-10
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## [Released]
88

9+
## [2.0.0] - 2023-05-18
10+
11+
### Added
12+
13+
- Import Neptune CSS CDN
14+
- Import Neptune Js CDN
15+
- Import Neptune JS
16+
- Neptune JS Badges
17+
- Neptune JS Buttons
18+
- Neptune JS Links
19+
- Neptune JS Spinner
20+
- Neptune JS Toasts
21+
- Neptune JS Progress Bars
22+
923
## [1.3.0] - 2023-05-18
1024

1125
### Changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919

2020
#### Added:
2121

22-
- [Links](#links)
23-
- [Spinner](#spinner)
22+
- Neptune CDN Imports
23+
- Neptune JS Imports
24+
- Neptune JS Snippets
2425

2526
## Getting started
2627

package.json

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"publisher": "NeptuneCSS",
55
"icon": "icon.png",
66
"description": "VS Code snippets for Neptune CSS",
7-
"version": "1.3.0",
7+
"version": "2.0.0",
88
"license": "MIT",
99
"author": "CGWebDev2003",
1010
"repository": {
@@ -25,31 +25,63 @@
2525
"snippets": [
2626
{
2727
"language": "html",
28-
"path": "./snippets/badges.code-snippets"
28+
"path": "./snippets/html/import.code-snippets"
2929
},
3030
{
3131
"language": "html",
32-
"path": "./snippets/buttons.code-snippets"
32+
"path": "./snippets/html/badges.code-snippets"
3333
},
3434
{
3535
"language": "html",
36-
"path": "./snippets/examples.code-snippets"
36+
"path": "./snippets/html/buttons.code-snippets"
3737
},
3838
{
3939
"language": "html",
40-
"path": "./snippets/links.code-snippets"
40+
"path": "./snippets/html/examples.code-snippets"
4141
},
4242
{
4343
"language": "html",
44-
"path": "./snippets/progressbars.code-snippets"
44+
"path": "./snippets/html/links.code-snippets"
4545
},
4646
{
4747
"language": "html",
48-
"path": "./snippets/spinner.code-snippets"
48+
"path": "./snippets/html/progressbars.code-snippets"
4949
},
5050
{
5151
"language": "html",
52-
"path": "./snippets/toasts.code-snippets"
52+
"path": "./snippets/html/spinner.code-snippets"
53+
},
54+
{
55+
"language": "html",
56+
"path": "./snippets/html/toasts.code-snippets"
57+
},
58+
{
59+
"language": "javascript",
60+
"path": "./snippets/js/import_js.code-snippets"
61+
},
62+
{
63+
"language": "javascript",
64+
"path": "./snippets/js/badges_js.code-snippets"
65+
},
66+
{
67+
"language": "javascript",
68+
"path": "./snippets/js/buttons_js.code-snippets"
69+
},
70+
{
71+
"language": "javascript",
72+
"path": "./snippets/js/links_js.code-snippets"
73+
},
74+
{
75+
"language": "javascript",
76+
"path": "./snippets/js/progressbars_js.code-snippets"
77+
},
78+
{
79+
"language": "javascript",
80+
"path": "./snippets/js/spinner_js.code-snippets"
81+
},
82+
{
83+
"language": "javascript",
84+
"path": "./snippets/js/toasts_js.code-snippets"
5385
}
5486
]
5587
}
File renamed without changes.
File renamed without changes.

snippets/html/import.code-snippets

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"Neptune JS CDN": {
3+
"scope": "html",
4+
"prefix": "nep-js-cdn",
5+
"body": "<script src=\"https://cdn.jsdelivr.net/npm/neptunecss-js@${1:VERSION}/neptune.min.js\"></script>",
6+
"description": "Include Neptune JS CDN link"
7+
},
8+
"Neptune CSS CDN": {
9+
"scope": "html",
10+
"prefix": "nep-css-cdn",
11+
"body": "<link rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/neptunecss@${1:VERSION}/neptune.min.css\">",
12+
"description": "Include Neptune CSS CDN link"
13+
}
14+
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)