@magic/tags 0.0.11 → 0.0.12
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/README.md +25 -7
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@ exports arrays of html and svg elements.
|
|
|
23
23
|
[snyk-url]: https://snyk.io/test/github/magic/tags
|
|
24
24
|
|
|
25
25
|
#### installation:
|
|
26
|
+
|
|
26
27
|
```javascript
|
|
27
28
|
npm install @magic/tags
|
|
28
29
|
```
|
|
@@ -30,51 +31,68 @@ exports arrays of html and svg elements.
|
|
|
30
31
|
#### usage:
|
|
31
32
|
|
|
32
33
|
##### import
|
|
34
|
+
|
|
33
35
|
```javascript
|
|
34
36
|
import { bodyTags, headTags, svgTags, tags } from '@magic/tags'
|
|
35
37
|
|
|
36
38
|
console.log(bodyTags) // prints all html body tags
|
|
37
39
|
console.log(headTags) // prints all html elements that can only appear outside of the body
|
|
38
|
-
console.log(svgTags)
|
|
39
|
-
console.log(tags)
|
|
40
|
+
console.log(svgTags) // prints all svg elements
|
|
41
|
+
console.log(tags) // prints all of the above
|
|
40
42
|
```
|
|
41
43
|
|
|
42
44
|
#### changelog
|
|
43
45
|
|
|
44
46
|
##### 0.0.1
|
|
47
|
+
|
|
45
48
|
first commit
|
|
46
49
|
|
|
47
50
|
##### 0.0.2
|
|
51
|
+
|
|
48
52
|
remove color-profile and switch tags from svg
|
|
49
53
|
|
|
50
54
|
##### 0.0.3
|
|
55
|
+
|
|
51
56
|
required node version is >= 13.5.0
|
|
52
57
|
|
|
53
58
|
##### 0.0.4
|
|
59
|
+
|
|
54
60
|
bump required node version to 14.2.0
|
|
55
61
|
|
|
56
62
|
##### 0.0.5
|
|
63
|
+
|
|
57
64
|
bump required node version to 14.15.4
|
|
58
65
|
|
|
59
66
|
##### 0.0.6
|
|
67
|
+
|
|
60
68
|
add <picture> element
|
|
61
69
|
|
|
62
70
|
##### 0.0.7
|
|
63
|
-
|
|
64
|
-
|
|
71
|
+
|
|
72
|
+
- update @magic/test
|
|
73
|
+
- add type: module to package.json
|
|
65
74
|
|
|
66
75
|
##### 0.0.8
|
|
76
|
+
|
|
67
77
|
update dependencies
|
|
68
78
|
|
|
69
79
|
##### 0.0.9
|
|
80
|
+
|
|
70
81
|
update dependencies
|
|
71
82
|
|
|
72
83
|
##### 0.0.10
|
|
73
|
-
|
|
74
|
-
|
|
84
|
+
|
|
85
|
+
- update dependencies
|
|
86
|
+
- add self-closing tag array
|
|
75
87
|
|
|
76
88
|
##### 0.0.11
|
|
89
|
+
|
|
77
90
|
update dependencies
|
|
78
91
|
|
|
79
|
-
##### 0.0.12
|
|
92
|
+
##### 0.0.12
|
|
93
|
+
|
|
94
|
+
update dependencies
|
|
95
|
+
|
|
96
|
+
##### 0.0.13 - unreleased
|
|
97
|
+
|
|
80
98
|
...
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic/tags",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"author": "Wizards & Witches",
|
|
5
5
|
"description": "exports arrays of all html and svg tags.",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"main": "src/index.mjs",
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@magic-modules/light-switch": "0.0.11",
|
|
37
|
-
"@magic-modules/no-spy": "0.0.
|
|
37
|
+
"@magic-modules/no-spy": "0.0.8",
|
|
38
38
|
"@magic-modules/pre": "0.0.11",
|
|
39
39
|
"@magic-themes/docs": "0.0.14",
|
|
40
|
-
"@magic/core": "0.0.
|
|
41
|
-
"@magic/format": "0.0.
|
|
42
|
-
"@magic/test": "0.2.
|
|
40
|
+
"@magic/core": "0.0.149",
|
|
41
|
+
"@magic/format": "0.0.51",
|
|
42
|
+
"@magic/test": "0.2.16"
|
|
43
43
|
},
|
|
44
44
|
"keywords": [
|
|
45
45
|
"html",
|