@noforeignland/signalk-to-noforeignland 1.0.1-beta.1 → 1.0.1-beta.8
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/.github/workflows/publish.yml +40 -35
- package/CHANGELOG.md +112 -109
- package/README.md +45 -45
- package/cleanup-old-plugin.js +80 -0
- package/doc/beta_install_cerbo.md +106 -0
- package/doc/beta_install_rpi.md +64 -0
- package/doc/dev +17 -0
- package/index.js +979 -902
- package/package.json +35 -35
- package/doc/beta_install.md +0 -60
- package/migrate-config.js +0 -56
package/doc/dev
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
INTERNAL NOTES ONLY, IGNORE.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
cd ~/dirk/nfl-signalk
|
|
6
|
+
|
|
7
|
+
# Aktuelle Version zu Beta machen
|
|
8
|
+
npm version 1.0.1-beta.1 --no-git-tag-version
|
|
9
|
+
|
|
10
|
+
# Package bauen
|
|
11
|
+
npm pack
|
|
12
|
+
|
|
13
|
+
# Mit beta tag publishen (nicht als 'latest')
|
|
14
|
+
npm publish --tag beta
|
|
15
|
+
|
|
16
|
+
# Falls du noch nicht eingeloggt bist:
|
|
17
|
+
npm login
|