ep_email_notifications 0.1.34 → 10.0.1
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/client.js +1 -1
- package/handleMessage.js +1 -1
- package/index.js +1 -1
- package/package.json +11 -11
- package/update.js +1 -1
- package/.github/workflows/backend-tests.yml +0 -75
- package/.github/workflows/frontend-tests.yml +0 -110
- package/.github/workflows/npmpublish.yml +0 -122
package/client.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const eejs = require('ep_etherpad-lite/node/eejs');
|
|
4
|
-
|
|
4
|
+
import settings from 'ep_etherpad-lite/node/utils/Settings'
|
|
5
5
|
|
|
6
6
|
exports.eejsBlock_mySettings = (hookName, args, cb) => {
|
|
7
7
|
args.content += eejs.require('ep_email_notifications/templates/email_notifications_settings.ejs');
|
package/handleMessage.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const db = require('ep_etherpad-lite/node/db/DB');
|
|
4
4
|
const email = require('emailjs');
|
|
5
5
|
const randomString = require('ep_etherpad-lite/static/js/pad_utils').randomString;
|
|
6
|
-
|
|
6
|
+
import settings from 'ep_etherpad-lite/node/utils/Settings'
|
|
7
7
|
const util = require('util');
|
|
8
8
|
const validator = require('validator');
|
|
9
9
|
|
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const db = require('ep_etherpad-lite/node/db/DB');
|
|
4
4
|
const fs = require('fs').promises;
|
|
5
|
-
|
|
5
|
+
import settings from 'ep_etherpad-lite/node/utils/Settings'
|
|
6
6
|
|
|
7
7
|
// Remove cache for this procedure
|
|
8
8
|
db.db.dbSettings.cache = 0;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ep_email_notifications",
|
|
3
3
|
"description": "Subscribe to a pad and receive an email when someone edits your pad",
|
|
4
|
-
"version": "0.1
|
|
4
|
+
"version": "10.0.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "John Mclear",
|
|
7
7
|
"email": "john@mclear.co.uk",
|
|
@@ -19,15 +19,14 @@
|
|
|
19
19
|
"validator": "13.7.0"
|
|
20
20
|
},
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": ">=
|
|
22
|
+
"node": ">=20.0.0"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
26
|
-
"url": "https://github.com/
|
|
26
|
+
"url": "https://github.com/ether/ether-plugins.git"
|
|
27
27
|
},
|
|
28
28
|
"readme": "# Description\nThis plugin allows users to subscribe to pads and receive email updates when a pad is being modified. You can modify the frequency. This plugin is very much in alpha stage and has a lot of things TODO (See TODO).\n\n# Installation\nMake sure an SMTP gateway is installed IE postfix\nConfigure SPF and RDNS records to ensure proper mail flow <-- Search online\nCopy/Edit the below to your settings.json\nConnect to a pad, Click on the Share/Embed link and enter in your email address.\nOpen that pad in ANOTHER BROWSER then begin modifying, you should receive an email when the pad has begun editing and once the pad has gone stale (when everyone stops editing it and a time period passes).\nNOTE: You will NOT receive an email if you(the author that registered their email) are currently on or editing that pad!\n\n```\n \"ep_email_notifications\" : {\n checkFrequency: 6000, // checkFrequency = How frequently(milliseconds) to check for pad updates -- Move me to the settings file\n staleTime: 30000, // staleTime = How stale(milliseconds) does a pad need to be before notifying subscribers? Move me to settings\n fromName: \"Etherpad SETTINGS FILE!\",\n fromEmail: \"pad@etherpad.org\",\n urlToPads: \"http://beta.etherpad.org/p/\", // urlToPads = The URL to your pads note the trailing /\n emailServer: { // See https://github.com/eleith/emailjs for settings\n host: \"127.0.0.1\"\n }\n }\n```\n\n# TODO\n* Clean up all code\n\n# FUTURE VERSIONS TODO\n* v2 - Get the modified contents from the API HTML diff and append that to the Email and make the email from the server HTML not plain text\n* v2 - a point to unsubscribe and validate/verify email https://github.com/alfredwesterveld/node-email-verification\n* v2 - Keep a record of when a user was last on a pad\n",
|
|
29
29
|
"readmeFilename": "README.md",
|
|
30
|
-
"_id": "ep_email_notifications@0.0.7",
|
|
31
30
|
"dist": {
|
|
32
31
|
"shasum": "1f32eee4c8d5f3903c549b5a7985afc0053ed451"
|
|
33
32
|
},
|
|
@@ -37,15 +36,16 @@
|
|
|
37
36
|
"url": "https://etherpad.org/"
|
|
38
37
|
},
|
|
39
38
|
"devDependencies": {
|
|
40
|
-
"eslint": "^
|
|
41
|
-
"eslint-config-etherpad": "^
|
|
42
|
-
"typescript": "^4.
|
|
39
|
+
"eslint": "^9.24.0",
|
|
40
|
+
"eslint-config-etherpad": "^4.0.4",
|
|
41
|
+
"typescript": "^5.4.3"
|
|
43
42
|
},
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/ether/ether-plugins/issues"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://github.com/ether/ether-plugins/tree/main/ep_email_notifications#readme",
|
|
44
47
|
"scripts": {
|
|
45
48
|
"lint": "eslint .",
|
|
46
49
|
"lint:fix": "eslint --fix ."
|
|
47
|
-
},
|
|
48
|
-
"peerDependencies": {
|
|
49
|
-
"ep_etherpad-lite": ">=1.8.6"
|
|
50
50
|
}
|
|
51
|
-
}
|
|
51
|
+
}
|
package/update.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
const db = require('ep_etherpad-lite/node/db/DB');
|
|
6
6
|
const API = require('ep_etherpad-lite/node/db/API.js');
|
|
7
7
|
const email = require('emailjs');
|
|
8
|
-
|
|
8
|
+
import settings from 'ep_etherpad-lite/node/utils/Settings'
|
|
9
9
|
const util = require('util');
|
|
10
10
|
|
|
11
11
|
const SMTPClient = email.SMTPClient;
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
name: "Backend tests"
|
|
2
|
-
|
|
3
|
-
# any branch is useful for testing before a PR is submitted
|
|
4
|
-
on: [push, pull_request]
|
|
5
|
-
|
|
6
|
-
jobs:
|
|
7
|
-
withplugins:
|
|
8
|
-
# run on pushes to any branch
|
|
9
|
-
# run on PRs from external forks
|
|
10
|
-
if: |
|
|
11
|
-
(github.event_name != 'pull_request')
|
|
12
|
-
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|
13
|
-
name: with Plugins
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
|
|
16
|
-
steps:
|
|
17
|
-
-
|
|
18
|
-
name: Install libreoffice
|
|
19
|
-
run: |
|
|
20
|
-
sudo add-apt-repository -y ppa:libreoffice/ppa
|
|
21
|
-
sudo apt update
|
|
22
|
-
sudo apt install -y --no-install-recommends libreoffice libreoffice-pdfimport
|
|
23
|
-
-
|
|
24
|
-
name: Install etherpad core
|
|
25
|
-
uses: actions/checkout@v3
|
|
26
|
-
with:
|
|
27
|
-
repository: ether/etherpad-lite
|
|
28
|
-
-
|
|
29
|
-
name: Checkout plugin repository
|
|
30
|
-
uses: actions/checkout@v3
|
|
31
|
-
with:
|
|
32
|
-
path: ./node_modules/__tmp
|
|
33
|
-
-
|
|
34
|
-
name: Determine plugin name
|
|
35
|
-
id: plugin_name
|
|
36
|
-
run: |
|
|
37
|
-
cd ./node_modules/__tmp
|
|
38
|
-
npx -c 'printf %s\\n "::set-output name=plugin_name::${npm_package_name}"'
|
|
39
|
-
-
|
|
40
|
-
name: Rename plugin directory
|
|
41
|
-
run: |
|
|
42
|
-
mv ./node_modules/__tmp ./node_modules/"${PLUGIN_NAME}"
|
|
43
|
-
env:
|
|
44
|
-
PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
|
|
45
|
-
-
|
|
46
|
-
uses: actions/setup-node@v3
|
|
47
|
-
with:
|
|
48
|
-
node-version: 12
|
|
49
|
-
cache: 'npm'
|
|
50
|
-
cache-dependency-path: |
|
|
51
|
-
src/package-lock.json
|
|
52
|
-
src/bin/doc/package-lock.json
|
|
53
|
-
node_modules/${{ steps.plugin_name.outputs.plugin_name }}/package-lock.json
|
|
54
|
-
-
|
|
55
|
-
name: Install plugin dependencies
|
|
56
|
-
run: |
|
|
57
|
-
cd ./node_modules/"${PLUGIN_NAME}"
|
|
58
|
-
npm ci
|
|
59
|
-
env:
|
|
60
|
-
PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
|
|
61
|
-
# Etherpad core dependencies must be installed after installing the
|
|
62
|
-
# plugin's dependencies, otherwise npm will try to hoist common
|
|
63
|
-
# dependencies by removing them from src/node_modules and installing them
|
|
64
|
-
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
|
|
65
|
-
# to be buggy, because it sometimes removes dependencies from
|
|
66
|
-
# src/node_modules but fails to add them to the top-level node_modules.
|
|
67
|
-
# Even if npm correctly hoists the dependencies, the hoisting seems to
|
|
68
|
-
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
|
|
69
|
-
# rules.
|
|
70
|
-
-
|
|
71
|
-
name: Install Etherpad core dependencies
|
|
72
|
-
run: src/bin/installDeps.sh
|
|
73
|
-
-
|
|
74
|
-
name: Run the backend tests
|
|
75
|
-
run: cd src && npm test
|
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
# Publicly credit Sauce Labs because they generously support open source
|
|
2
|
-
# projects.
|
|
3
|
-
name: "frontend tests powered by Sauce Labs"
|
|
4
|
-
|
|
5
|
-
on: [push]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
test:
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
|
|
11
|
-
steps:
|
|
12
|
-
-
|
|
13
|
-
name: Fail if Dependabot
|
|
14
|
-
if: github.actor == 'dependabot[bot]'
|
|
15
|
-
run: |
|
|
16
|
-
cat <<EOF >&2
|
|
17
|
-
Frontend tests skipped because Dependabot can't access secrets.
|
|
18
|
-
Manually re-run the jobs to run the frontend tests.
|
|
19
|
-
For more information, see:
|
|
20
|
-
https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/
|
|
21
|
-
EOF
|
|
22
|
-
exit 1
|
|
23
|
-
-
|
|
24
|
-
name: Generate Sauce Labs strings
|
|
25
|
-
id: sauce_strings
|
|
26
|
-
run: |
|
|
27
|
-
printf %s\\n '::set-output name=name::${{github.event.repository.name}} ${{ github.workflow }} - ${{ github.job }}'
|
|
28
|
-
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}'
|
|
29
|
-
-
|
|
30
|
-
name: Check out Etherpad core
|
|
31
|
-
uses: actions/checkout@v3
|
|
32
|
-
with:
|
|
33
|
-
repository: ether/etherpad-lite
|
|
34
|
-
-
|
|
35
|
-
uses: actions/setup-node@v3
|
|
36
|
-
with:
|
|
37
|
-
node-version: 12
|
|
38
|
-
cache: 'npm'
|
|
39
|
-
cache-dependency-path: |
|
|
40
|
-
src/package-lock.json
|
|
41
|
-
src/bin/doc/package-lock.json
|
|
42
|
-
-
|
|
43
|
-
name: Check out the plugin
|
|
44
|
-
uses: actions/checkout@v3
|
|
45
|
-
with:
|
|
46
|
-
path: ./node_modules/__tmp
|
|
47
|
-
-
|
|
48
|
-
name: export GIT_HASH to env
|
|
49
|
-
id: environment
|
|
50
|
-
run: |
|
|
51
|
-
cd ./node_modules/__tmp
|
|
52
|
-
echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
|
53
|
-
-
|
|
54
|
-
name: Determine plugin name
|
|
55
|
-
id: plugin_name
|
|
56
|
-
run: |
|
|
57
|
-
cd ./node_modules/__tmp
|
|
58
|
-
npx -c 'printf %s\\n "::set-output name=plugin_name::${npm_package_name}"'
|
|
59
|
-
-
|
|
60
|
-
name: Rename plugin directory
|
|
61
|
-
env:
|
|
62
|
-
PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
|
|
63
|
-
run: |
|
|
64
|
-
mv ./node_modules/__tmp ./node_modules/"${PLUGIN_NAME}"
|
|
65
|
-
-
|
|
66
|
-
name: Install plugin dependencies
|
|
67
|
-
env:
|
|
68
|
-
PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
|
|
69
|
-
run: |
|
|
70
|
-
cd ./node_modules/"${PLUGIN_NAME}"
|
|
71
|
-
npm ci
|
|
72
|
-
# Etherpad core dependencies must be installed after installing the
|
|
73
|
-
# plugin's dependencies, otherwise npm will try to hoist common
|
|
74
|
-
# dependencies by removing them from src/node_modules and installing them
|
|
75
|
-
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
|
|
76
|
-
# to be buggy, because it sometimes removes dependencies from
|
|
77
|
-
# src/node_modules but fails to add them to the top-level node_modules.
|
|
78
|
-
# Even if npm correctly hoists the dependencies, the hoisting seems to
|
|
79
|
-
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
|
|
80
|
-
# rules.
|
|
81
|
-
-
|
|
82
|
-
name: Install Etherpad core dependencies
|
|
83
|
-
run: src/bin/installDeps.sh
|
|
84
|
-
-
|
|
85
|
-
name: Create settings.json
|
|
86
|
-
run: cp settings.json.template settings.json
|
|
87
|
-
-
|
|
88
|
-
name: Disable import/export rate limiting
|
|
89
|
-
run: |
|
|
90
|
-
sed -e '/^ *"importExportRateLimiting":/,/^ *\}/ s/"max":.*/"max": 0/' -i settings.json
|
|
91
|
-
-
|
|
92
|
-
name: Remove standard frontend test files
|
|
93
|
-
run: rm -rf src/tests/frontend/specs
|
|
94
|
-
-
|
|
95
|
-
uses: saucelabs/sauce-connect-action@v2.1.1
|
|
96
|
-
with:
|
|
97
|
-
username: ${{ secrets.SAUCE_USERNAME }}
|
|
98
|
-
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
99
|
-
tunnelIdentifier: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
100
|
-
-
|
|
101
|
-
name: Run the frontend tests
|
|
102
|
-
shell: bash
|
|
103
|
-
env:
|
|
104
|
-
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
|
105
|
-
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
106
|
-
SAUCE_NAME: ${{ steps.sauce_strings.outputs.name }}
|
|
107
|
-
TRAVIS_JOB_NUMBER: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
108
|
-
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
|
109
|
-
run: |
|
|
110
|
-
src/tests/frontend/travis/runner.sh
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
# This workflow will run tests using node and then publish a package to the npm registry when a release is created
|
|
2
|
-
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
|
|
3
|
-
|
|
4
|
-
name: Node.js Package
|
|
5
|
-
|
|
6
|
-
on:
|
|
7
|
-
pull_request:
|
|
8
|
-
push:
|
|
9
|
-
branches:
|
|
10
|
-
- main
|
|
11
|
-
- master
|
|
12
|
-
|
|
13
|
-
jobs:
|
|
14
|
-
test:
|
|
15
|
-
runs-on: ubuntu-latest
|
|
16
|
-
steps:
|
|
17
|
-
# Clone ether/etherpad-lite to ../etherpad-lite so that ep_etherpad-lite
|
|
18
|
-
# can be "installed" in this plugin's node_modules. The checkout v2 action
|
|
19
|
-
# doesn't support cloning outside of $GITHUB_WORKSPACE (see
|
|
20
|
-
# https://github.com/actions/checkout/issues/197), so the repo is first
|
|
21
|
-
# cloned to etherpad-lite then moved to ../etherpad-lite. To avoid
|
|
22
|
-
# conflicts with this plugin's clone, etherpad-lite must be cloned and
|
|
23
|
-
# moved out before this plugin's repo is cloned to $GITHUB_WORKSPACE.
|
|
24
|
-
-
|
|
25
|
-
uses: actions/checkout@v3
|
|
26
|
-
with:
|
|
27
|
-
repository: ether/etherpad-lite
|
|
28
|
-
path: etherpad-lite
|
|
29
|
-
-
|
|
30
|
-
run: mv etherpad-lite ..
|
|
31
|
-
# etherpad-lite has been moved outside of $GITHUB_WORKSPACE, so it is now
|
|
32
|
-
# safe to clone this plugin's repo to $GITHUB_WORKSPACE.
|
|
33
|
-
-
|
|
34
|
-
uses: actions/checkout@v3
|
|
35
|
-
# This is necessary for actions/setup-node because '..' can't be used in
|
|
36
|
-
# cache-dependency-path.
|
|
37
|
-
-
|
|
38
|
-
name: Create ep_etherpad-lite symlink
|
|
39
|
-
run: |
|
|
40
|
-
mkdir -p node_modules
|
|
41
|
-
ln -s ../../etherpad-lite/src node_modules/ep_etherpad-lite
|
|
42
|
-
-
|
|
43
|
-
uses: actions/setup-node@v3
|
|
44
|
-
with:
|
|
45
|
-
node-version: 12
|
|
46
|
-
cache: 'npm'
|
|
47
|
-
cache-dependency-path: |
|
|
48
|
-
node_modules/ep_etherpad-lite/package-lock.json
|
|
49
|
-
node_modules/ep_etherpad-lite/bin/doc/package-lock.json
|
|
50
|
-
package-lock.json
|
|
51
|
-
# All of ep_etherpad-lite's devDependencies are installed because the
|
|
52
|
-
# plugin might do `require('ep_etherpad-lite/node_modules/${devDep}')`.
|
|
53
|
-
# Eventually it would be nice to create an ESLint plugin that prohibits
|
|
54
|
-
# Etherpad plugins from piggybacking off of ep_etherpad-lite's
|
|
55
|
-
# devDependencies. If we had that, we could change this line to only
|
|
56
|
-
# install production dependencies.
|
|
57
|
-
-
|
|
58
|
-
run: cd ../etherpad-lite/src && npm ci
|
|
59
|
-
-
|
|
60
|
-
run: npm ci
|
|
61
|
-
# This runs some sanity checks and creates a symlink at
|
|
62
|
-
# node_modules/ep_etherpad-lite that points to ../../etherpad-lite/src.
|
|
63
|
-
# This step must be done after `npm ci` installs the plugin's dependencies
|
|
64
|
-
# because npm "helpfully" cleans up such symlinks. :( Installing
|
|
65
|
-
# ep_etherpad-lite in the plugin's node_modules prevents lint errors and
|
|
66
|
-
# unit test failures if the plugin does `require('ep_etherpad-lite/foo')`.
|
|
67
|
-
-
|
|
68
|
-
run: npm install --no-save ep_etherpad-lite@file:../etherpad-lite/src
|
|
69
|
-
-
|
|
70
|
-
run: npm test
|
|
71
|
-
-
|
|
72
|
-
run: npm run lint
|
|
73
|
-
|
|
74
|
-
publish-npm:
|
|
75
|
-
if: github.event_name == 'push'
|
|
76
|
-
needs: test
|
|
77
|
-
runs-on: ubuntu-latest
|
|
78
|
-
steps:
|
|
79
|
-
-
|
|
80
|
-
uses: actions/checkout@v3
|
|
81
|
-
with:
|
|
82
|
-
fetch-depth: 0
|
|
83
|
-
-
|
|
84
|
-
uses: actions/setup-node@v3
|
|
85
|
-
with:
|
|
86
|
-
node-version: 12
|
|
87
|
-
registry-url: https://registry.npmjs.org/
|
|
88
|
-
cache: 'npm'
|
|
89
|
-
-
|
|
90
|
-
name: Bump version (patch)
|
|
91
|
-
run: |
|
|
92
|
-
LATEST_TAG=$(git describe --tags --abbrev=0) || exit 1
|
|
93
|
-
NEW_COMMITS=$(git rev-list --count "${LATEST_TAG}"..) || exit 1
|
|
94
|
-
[ "${NEW_COMMITS}" -gt 0 ] || exit 0
|
|
95
|
-
git config user.name 'github-actions[bot]'
|
|
96
|
-
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
|
|
97
|
-
npm ci
|
|
98
|
-
npm version patch
|
|
99
|
-
git push --follow-tags
|
|
100
|
-
# This is required if the package has a prepare script that uses something
|
|
101
|
-
# in dependencies or devDependencies.
|
|
102
|
-
-
|
|
103
|
-
run: npm ci
|
|
104
|
-
# `npm publish` must come after `git push` otherwise there is a race
|
|
105
|
-
# condition: If two PRs are merged back-to-back then master/main will be
|
|
106
|
-
# updated with the commits from the second PR before the first PR's
|
|
107
|
-
# workflow has a chance to push the commit generated by `npm version
|
|
108
|
-
# patch`. This causes the first PR's `git push` step to fail after the
|
|
109
|
-
# package has already been published, which in turn will cause all future
|
|
110
|
-
# workflow runs to fail because they will all attempt to use the same
|
|
111
|
-
# already-used version number. By running `npm publish` after `git push`,
|
|
112
|
-
# back-to-back merges will cause the first merge's workflow to fail but
|
|
113
|
-
# the second's will succeed.
|
|
114
|
-
-
|
|
115
|
-
run: npm publish
|
|
116
|
-
env:
|
|
117
|
-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
|
118
|
-
-
|
|
119
|
-
name: Add package to etherpad organization
|
|
120
|
-
run: npm access grant read-write etherpad:developers
|
|
121
|
-
env:
|
|
122
|
-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|