b13-rocket 0.5.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 ADDED
@@ -0,0 +1,102 @@
1
+ # EditorConfig is awesome: http://EditorConfig.org
2
+
3
+ # top-most EditorConfig file
4
+ root = true
5
+ charset = utf-8
6
+
7
+ # Get rid of whitespace to avoid diffs with a bunch of EOL changes
8
+ trim_trailing_whitespace = true
9
+
10
+ # Unix-style newlines with a newline ending every file
11
+ [*]
12
+ end_of_line = lf
13
+ insert_final_newline = true
14
+
15
+ # CSS-Files
16
+ [*.css]
17
+ indent_style = tab
18
+ indent_size = 4
19
+
20
+ # SCSS-Files
21
+ [*.scss]
22
+ indent_style = tab
23
+ indent_size = 4
24
+
25
+ # HTML-Files
26
+ [*.html]
27
+ indent_style = tab
28
+ indent_size = 4
29
+
30
+ # TMPL-Files
31
+ [*.tmpl]
32
+ indent_style = tab
33
+ indent_size = 4
34
+
35
+ # LESS-Files
36
+ [*.less]
37
+ indent_style = tab
38
+ indent_size = 4
39
+
40
+ # JS-Files
41
+ [*.js]
42
+ indent_style = tab
43
+ indent_size = 4
44
+
45
+ # Vue-Files
46
+ [*.vue]
47
+ indent_style = tab
48
+ indent_size = 4
49
+
50
+ # JSON-Files
51
+ [*.json]
52
+ indent_style = tab
53
+ indent_size = 4
54
+
55
+ # PHP-Files
56
+ [*.php]
57
+ indent_style = space
58
+ indent_size = 4
59
+
60
+ # ReST-Files
61
+ [*.rst]
62
+ indent_style = space
63
+ indent_size = 3
64
+
65
+ # MD-Files
66
+ [*.md]
67
+ indent_style = space
68
+ indent_size = 4
69
+
70
+ # YAML-Files
71
+ [{*.yaml,*.yml}]
72
+ indent_style = space
73
+ indent_size = 2
74
+
75
+ # package.json or .travis.yml
76
+ [{package.json,.travis.yml}]
77
+ indent_style = space
78
+ indent_size = 2
79
+
80
+ # TypoScript
81
+ [*.ts]
82
+ indent_style = space
83
+ indent_size = 4
84
+
85
+ [*.typoscript]
86
+ indent_style = space
87
+ indent_size = 4
88
+
89
+ [*.tsconfig]
90
+ indent_style = space
91
+ indent_size = 4
92
+
93
+ # XLF-Files
94
+ [*.xlf]
95
+ indent_style = tab
96
+ indent_size = 4
97
+
98
+ # SQL-Files
99
+ [*.sql]
100
+ indent_style = tab
101
+ indent_size = 2
102
+
package/.gitlab-ci.yml ADDED
@@ -0,0 +1,14 @@
1
+ image: node:16
2
+
3
+ stages:
4
+ - deploy
5
+
6
+ deploy:
7
+ stage: deploy
8
+ rules:
9
+ - if: $CI_COMMIT_TAG
10
+ script:
11
+ # Ensure tag is set as version
12
+ - npm version $CI_COMMIT_TAG --no-git-tag-version --allow-same-version
13
+ - echo "//${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}">.npmrc
14
+ - npm publish
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ v16.13.0