slidev-theme-meetup 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +26 -0
- package/CHANGELOG.md +12 -0
- package/README.md +56 -7
- package/example.md +10 -10
- package/package.json +17 -17
- package/styles/layout.css +0 -4
- package/vite.config.js +3 -1
- package/public/images/tboerger.jpg +0 -0
package/.editorconfig
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# http://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
insert_final_newline = true
|
|
7
|
+
trim_trailing_whitespace = true
|
|
8
|
+
|
|
9
|
+
[*.{html,tmpl}]
|
|
10
|
+
indent_style = space
|
|
11
|
+
indent_size = 2
|
|
12
|
+
|
|
13
|
+
[*.{js,vue}]
|
|
14
|
+
indent_style = space
|
|
15
|
+
indent_size = 2
|
|
16
|
+
|
|
17
|
+
[*.{css,scss}]
|
|
18
|
+
indent_style = space
|
|
19
|
+
indent_size = 2
|
|
20
|
+
|
|
21
|
+
[*.{yml,toml,json}]
|
|
22
|
+
indent_style = space
|
|
23
|
+
indent_size = 2
|
|
24
|
+
|
|
25
|
+
[*.md]
|
|
26
|
+
trim_trailing_whitespace = true
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.0](https://github.com/tboerger/slidev-theme-meetup/compare/v1.0.0...v1.1.0) (2022-09-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* improve dependency tree and fix usage of theme ([32506a2](https://github.com/tboerger/slidev-theme-meetup/commit/32506a2e8af0ebb4075b7d2caeb469a130cdd79f))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* drop personal profile picture ([2579952](https://github.com/tboerger/slidev-theme-meetup/commit/2579952054ae02b79e97139d4cc1cac8e85715f2))
|
|
14
|
+
|
|
3
15
|
## 1.0.0 (2022-09-15)
|
|
4
16
|
|
|
5
17
|
|
package/README.md
CHANGED
|
@@ -15,9 +15,36 @@ theme within the [documentation][themes].
|
|
|
15
15
|
```md
|
|
16
16
|
---
|
|
17
17
|
theme: meetup
|
|
18
|
+
layout: intro
|
|
19
|
+
lineNumbers: false
|
|
20
|
+
themeConfig:
|
|
21
|
+
title: Welcome to Slidev
|
|
22
|
+
twitter: example
|
|
23
|
+
github: example
|
|
18
24
|
---
|
|
19
25
|
```
|
|
20
26
|
|
|
27
|
+
This themes requires additional packages beside the theme itself and the above
|
|
28
|
+
configuration:
|
|
29
|
+
|
|
30
|
+
```console
|
|
31
|
+
npm install vite-svg-loader qrious
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Finally you also got to provide a customized `vite.config.js` as this is
|
|
35
|
+
required to load the used SVGs:
|
|
36
|
+
|
|
37
|
+
```ts
|
|
38
|
+
import { defineConfig } from 'vite'
|
|
39
|
+
import svgLoader from 'vite-svg-loader'
|
|
40
|
+
|
|
41
|
+
export default defineConfig({
|
|
42
|
+
plugins: [
|
|
43
|
+
svgLoader(),
|
|
44
|
+
],
|
|
45
|
+
})
|
|
46
|
+
```
|
|
47
|
+
|
|
21
48
|
## Examples
|
|
22
49
|
|
|
23
50
|
### Intro
|
|
@@ -28,7 +55,7 @@ layout: intro
|
|
|
28
55
|
---
|
|
29
56
|
```
|
|
30
57
|
|
|
31
|
-

|
|
32
59
|
|
|
33
60
|
### Presenter
|
|
34
61
|
|
|
@@ -39,7 +66,7 @@ photo: /images/tboerger.jpg
|
|
|
39
66
|
---
|
|
40
67
|
```
|
|
41
68
|
|
|
42
|
-

|
|
43
70
|
|
|
44
71
|
### Twocols
|
|
45
72
|
|
|
@@ -49,7 +76,7 @@ layout: twocols
|
|
|
49
76
|
---
|
|
50
77
|
```
|
|
51
78
|
|
|
52
|
-

|
|
53
80
|
|
|
54
81
|
### Center
|
|
55
82
|
|
|
@@ -59,7 +86,7 @@ layout: center
|
|
|
59
86
|
---
|
|
60
87
|
```
|
|
61
88
|
|
|
62
|
-

|
|
63
90
|
|
|
64
91
|
### Cover
|
|
65
92
|
|
|
@@ -69,7 +96,7 @@ layout: cover
|
|
|
69
96
|
---
|
|
70
97
|
```
|
|
71
98
|
|
|
72
|
-

|
|
73
100
|
|
|
74
101
|
### Default
|
|
75
102
|
|
|
@@ -79,7 +106,7 @@ layout: default
|
|
|
79
106
|
---
|
|
80
107
|
```
|
|
81
108
|
|
|
82
|
-

|
|
83
110
|
|
|
84
111
|
### Qrcode
|
|
85
112
|
|
|
@@ -90,7 +117,7 @@ url: https://example.com
|
|
|
90
117
|
---
|
|
91
118
|
```
|
|
92
119
|
|
|
93
|
-

|
|
94
121
|
|
|
95
122
|
## Components
|
|
96
123
|
|
|
@@ -118,6 +145,28 @@ General footer part of every slide.
|
|
|
118
145
|
<LayoutFooter />
|
|
119
146
|
```
|
|
120
147
|
|
|
148
|
+
## Security
|
|
149
|
+
|
|
150
|
+
If you find a security issue please contact thomas@boerger.ws first.
|
|
151
|
+
|
|
152
|
+
## Contributing
|
|
153
|
+
|
|
154
|
+
Fork -> Patch -> Push -> Pull Request
|
|
155
|
+
|
|
156
|
+
## Authors
|
|
157
|
+
|
|
158
|
+
* [Thomas Boerger](https://github.com/tboerger)
|
|
159
|
+
|
|
160
|
+
## License
|
|
161
|
+
|
|
162
|
+
[CC-BY-SA-4.0](http://creativecommons.org/licenses/by-sa/4.0/)
|
|
163
|
+
|
|
164
|
+
## Copyright
|
|
165
|
+
|
|
166
|
+
```console
|
|
167
|
+
Copyright (c) 2022 Thomas Boerger <thomas@boerger.ws>
|
|
168
|
+
```
|
|
169
|
+
|
|
121
170
|
[slidev]: https://github.com/slidevjs/slidev
|
|
122
171
|
[unicorn]: https://github.com/Dawntraoz/slidev-theme-unicorn/
|
|
123
172
|
[purplin]: https://github.com/moudev/slidev-theme-purplin/
|
package/example.md
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
---
|
|
2
2
|
theme: ./
|
|
3
3
|
layout: intro
|
|
4
|
+
highlighter: prism
|
|
5
|
+
lineNumbers: false
|
|
4
6
|
themeConfig:
|
|
5
7
|
title: Welcome to Slidev
|
|
6
|
-
twitter:
|
|
7
|
-
github:
|
|
8
|
+
twitter: example
|
|
9
|
+
github: example
|
|
8
10
|
---
|
|
9
11
|
# Welcome to Slidev
|
|
10
12
|
|
|
11
13
|
---
|
|
12
14
|
layout: presenter
|
|
13
|
-
photo: /
|
|
15
|
+
photo: https://source.unsplash.com/collection/94734566/1050x1400
|
|
14
16
|
---
|
|
15
|
-
#
|
|
17
|
+
# Max Mustermann
|
|
16
18
|
|
|
17
|
-
|
|
19
|
+
Software Engineer @ Mustermann GmbH
|
|
18
20
|
|
|
19
21
|
* Golang
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
* Ansible
|
|
24
|
-
* Prometheus
|
|
22
|
+
* Music
|
|
23
|
+
* Cinema
|
|
24
|
+
* Technics
|
|
25
25
|
|
|
26
26
|
---
|
|
27
27
|
layout: twocols
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slidev-theme-meetup",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Slidev theme used for talks on meetups",
|
|
5
5
|
"homepage": "https://github.com/tboerger/slidev-theme-meetup#readme",
|
|
6
6
|
"license": "CC-BY-SA-4.0",
|
|
@@ -19,26 +19,25 @@
|
|
|
19
19
|
"release": "semantic-release"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@
|
|
22
|
+
"@iconify-json/mdi": "1.1.32",
|
|
23
|
+
"@slidev/types": "0.36.5",
|
|
23
24
|
"codemirror-theme-vars": "0.1.1",
|
|
24
25
|
"prism-theme-vars": "0.2.4",
|
|
25
|
-
"
|
|
26
|
+
"qrious": "4.0.2",
|
|
26
27
|
"vite-svg-loader": "3.6.0"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
|
-
"@
|
|
30
|
-
"@semantic-release/
|
|
31
|
-
"@semantic-release/
|
|
32
|
-
"@semantic-release/
|
|
33
|
-
"@semantic-release/
|
|
34
|
-
"@semantic-release/
|
|
35
|
-
"@
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"eslint": "
|
|
39
|
-
"
|
|
40
|
-
"playwright-chromium": "1.25.2",
|
|
41
|
-
"qrious": "4.0.2"
|
|
30
|
+
"@semantic-release/changelog": "6.0.1",
|
|
31
|
+
"@semantic-release/commit-analyzer": "9.0.2",
|
|
32
|
+
"@semantic-release/git": "10.0.1",
|
|
33
|
+
"@semantic-release/github": "8.0.6",
|
|
34
|
+
"@semantic-release/npm": "9.0.1",
|
|
35
|
+
"@semantic-release/release-notes-generator": "10.0.3",
|
|
36
|
+
"@slidev/cli": "0.36.5",
|
|
37
|
+
"conventional-changelog-conventionalcommits": "5.0.0",
|
|
38
|
+
"eslint": "8.23.1",
|
|
39
|
+
"eslint-plugin-vue": "9.4.0",
|
|
40
|
+
"playwright-chromium": "1.25.2"
|
|
42
41
|
},
|
|
43
42
|
"keywords": [
|
|
44
43
|
"slidev-theme",
|
|
@@ -53,7 +52,8 @@
|
|
|
53
52
|
"highlighter": "all",
|
|
54
53
|
"defaults": {
|
|
55
54
|
"fonts": {
|
|
56
|
-
"sans": "
|
|
55
|
+
"sans": "Nunito",
|
|
56
|
+
"title": "Georgia",
|
|
57
57
|
"mono": "Fira Code"
|
|
58
58
|
},
|
|
59
59
|
"hightlighter": "prism"
|
package/styles/layout.css
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
@import url(http://fonts.googleapis.com/css?family=Nunito);
|
|
2
|
-
@import url(http://fonts.googleapis.com/css?family=Georgia);
|
|
3
|
-
@import url(http://fonts.googleapis.com/css?family=Fira+Code);
|
|
4
|
-
|
|
5
1
|
:root {
|
|
6
2
|
--slidev-theme-primary: #5d8392;
|
|
7
3
|
--slidev-code-font-size: 0.95rem;
|
package/vite.config.js
CHANGED
|
Binary file
|