jmapserver-ng-core 2.10.17 → 2.10.18
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/.env +2 -1
- package/.env.example +3 -1
- package/.npmrc.example +3 -0
- package/package.json +1 -1
- package/public/index.js +1 -1
package/.env
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
# this is the npm token used to publish packages. The token must have read-write permission
|
|
2
2
|
# npm token expire after 90 days, you must refresh it on a regular basis
|
|
3
|
-
|
|
3
|
+
# TODO: set npm token in env once command-line problems are fixed
|
|
4
|
+
NPM_TOKEN=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
|
package/.env.example
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
# this is the npm token used to publish packages. The token must have read-write permission
|
|
2
2
|
# npm token expire after 90 days, you must refresh it on a regular basis
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
# TODO: set npm token in env once command-line problems are fixed
|
|
5
|
+
# NPM_TOKEN=your-publish-token
|
package/.npmrc.example
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
# replace <FONT-AWSOME-TOKEN> with a valid token
|
|
2
2
|
@fortawesome:registry=https://npm.fontawesome.com/
|
|
3
3
|
//npm.fontawesome.com/:_authToken=<FONT-AWSOME-TOKEN>
|
|
4
|
+
# configure this using the .env file. See .env.example
|
|
5
|
+
# TODO: set npm token in env once command-line problems are fixed
|
|
6
|
+
# //registry.npmjs.org/:_authToken=${NPM_TOKEN}
|