shinkansen-transmission 2.5.9 → 2.5.10
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/.publish/README.md +20 -0
- package/package.json +4 -4
@@ -0,0 +1,20 @@
|
|
1
|
+
# Publish to NPM
|
2
|
+
|
3
|
+
For CircleCI or the shell
|
4
|
+
|
5
|
+
If you need an _authentication token_ to publish then you should resolve that before executing this script
|
6
|
+
|
7
|
+
```bash
|
8
|
+
echo ".publish/publish.sh" >> .npmignore
|
9
|
+
git clone https://github.com/modernpoacher/publish.git .publish
|
10
|
+
.publish/publish.sh
|
11
|
+
```
|
12
|
+
|
13
|
+
A Gist with the same content as `publish.sh` may need an additional step
|
14
|
+
|
15
|
+
```bash
|
16
|
+
echo ".publish/publish.sh" >> .npmignore
|
17
|
+
git clone https://gist.github.com/efd85e2b8da1ee830dd637f134994a9d.git .publish
|
18
|
+
chmod +x .publish/publish.sh
|
19
|
+
.publish/publish.sh
|
20
|
+
```
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shinkansen-transmission",
|
3
|
-
"version": "2.5.
|
3
|
+
"version": "2.5.10",
|
4
4
|
"description": "Shinkansen Transmission",
|
5
5
|
"keywords": [
|
6
6
|
"Shinkansen",
|
@@ -43,10 +43,10 @@
|
|
43
43
|
"@babel/core": "^7.26.10",
|
44
44
|
"@babel/preset-env": "^7.26.9",
|
45
45
|
"@babel/register": "^7.25.9",
|
46
|
-
"@sequencemedia/eslint-config-standard": "^0.2.
|
47
|
-
"@sequencemedia/eslint-config-typescript": "^0.1.
|
46
|
+
"@sequencemedia/eslint-config-standard": "^0.2.45",
|
47
|
+
"@sequencemedia/eslint-config-typescript": "^0.1.66",
|
48
48
|
"@types/babel__register": "^7.17.3",
|
49
|
-
"@types/chai": "^5.2.
|
49
|
+
"@types/chai": "^5.2.1",
|
50
50
|
"@types/debug": "^4.1.12",
|
51
51
|
"@types/mocha": "^10.0.10",
|
52
52
|
"c8": "^10.1.3",
|