Skip to content

Commit d2f7955

Browse files
committed
chore(release): v1.0.0
1 parent 4730ea4 commit d2f7955

File tree

5 files changed

+31
-11
lines changed

5 files changed

+31
-11
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CHANGELOG.md

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
4+
## v1.0.0
5+
6+
7+
### 🚀 Enhancements
8+
9+
- Initial stable release
10+
11+
12+
### ❤️ Contributors
13+
14+
- Jan Hug <[email protected]>

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ blökkli is an interactive page builder for Nuxt.
55
## Install package
66

77
```sh
8-
npm install --save blokkli-beta
8+
npm install --save @blokkli/editor
99
```
1010

1111
## Configure module
@@ -14,7 +14,7 @@ Add the module in your Nuxt config, together with the minimum blokkli config:
1414

1515
```typescript
1616
export default defineNuxtConfig({
17-
modules: ['blokkli-beta'],
17+
modules: ['@blokkli/editor'],
1818

1919
blokkli: {
2020
// Only required configuration.

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"name": "blokkli-beta",
3-
"version": "0.0.1-beta.36",
2+
"name": "@blokkli/editor",
3+
"version": "1.0.0",
44
"description": "Interactive page building experience for Nuxt",
55
"repository": "blokkli/editor",
66
"type": "module",
7+
"private": false,
78
"exports": {
89
".": {
910
"import": "./dist/module.mjs",
@@ -40,8 +41,12 @@
4041
"docs:preview": "vitepress preview docs",
4142
"cypress:open": "cypress open"
4243
},
43-
"author": "",
44-
"license": "ISC",
44+
"author": {
45+
"name": "Jan Hug",
46+
"url": "https://dulnan.net",
47+
"email": "[email protected]"
48+
},
49+
"license": "MIT",
4550
"dependencies": {
4651
"@nuxt/kit": "^3.13.1",
4752
"estree-walker-ts": "^1.0.1",

0 commit comments

Comments
 (0)