Skip to content

Commit 04d63fd

Browse files
committed
2 parents cb2ef6c + 9547e47 commit 04d63fd

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [Released]
99

1010
## [1.0.0] - 2023-05-05
1111

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@
99
## Install
1010

1111
### NMP
12-
Copy the following Code to install the [npm package](https://www.npmjs.com/package/@neptune-css/neptune).
12+
Copy the following Code to install the [npm package](https://www.npmjs.com/package/neptunecss-js).
1313
```
14-
npm i @neptune-css/neptune
14+
npm i neptunecss-js
1515
```
1616

1717
### CDN
18-
Use the following tag to import neptune via cdn. Replace [VERSION] with the version you want (`vx.x.x`).
1918
```html
20-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@neptune-css/neptune@[VERSION]/neptune.css">
19+
<script src="https://cdn.jsdelivr.net/npm/neptunecss-js@[VERSION]/neptune.min.js"></script>
2120
```
2221

2322
#### Example
@@ -30,24 +29,27 @@ Use the following tag to import neptune via cdn. Replace [VERSION] with the vers
3029
<meta name="viewport" content="width=device-width, initial-scale=1.0">
3130

3231
<!-- Import neptune ui -->
33-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@neptune-css/neptune@[VERSION]/neptune.css">
32+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/neptunecss@[VERSION]/neptune.min.css">
3433

3534
<title>Neptune example</title>
3635
</head>
3736
<body>
3837
<!-- Your Content -->
38+
39+
<!-- Import Neptune JS -->
40+
<script src="https://cdn.jsdelivr.net/npm/neptunecss-js@[VERSION]/neptune.min.js"></script>
3941
</body>
4042
</html>
4143
```
4244

4345
## Documentation
44-
You can read the docs [here](http://docs.neptunecss.org).
46+
You can read the docs [here](http://neptunecss.org).
4547

4648
## Snippets Extension
4749
Download it in [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=NeptuneCSS.neptune-snippets) or checkout on [GitHub](https://github.com/neptune-css/neptune-snippets).
4850

4951
## License
50-
[MIT LICENSE](https://github.com/neptune-css/neptune-css/blob/main/LICENSE)
52+
[MIT LICENSE](https://github.com/neptune-css/neptune-js/blob/main/LICENSE)
5153

5254
## Author
5355
[Colin Grahm](https://github.com/CGWebDev2003)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@neptune-css/neptune-js",
3-
"version": "0.1.0",
2+
"name": "neptunecss-js",
3+
"version": "1.0.1",
44
"description": "The official vanilla javascript api for Neptune CSS",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)