jmapserver-ng-core 2.10.9 → 2.10.11

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 ADDED
@@ -0,0 +1,3 @@
1
+ # this is the npm token used to publish packages. The token must have read-write permission
2
+ # npm token expire after 90 days, you must refresh it on a regular basis
3
+ NPM_TOKEN=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
package/.env.example ADDED
@@ -0,0 +1,3 @@
1
+ # this is the npm token used to publish packages. The token must have read-write permission
2
+ # npm token expire after 90 days, you must refresh it on a regular basis
3
+ NPM_TOKEN=your-publish-token
package/.npmrc.example CHANGED
@@ -1,4 +1,6 @@
1
- # replace <FONT-AWSOME-TOKEN> and <NPM-K2-PUBLISH-TOKEN> with valid tokens
1
+ # replace <FONT-AWSOME-TOKEN> with a valid token
2
+ # duplicate .env.npm.example file, rename it to .env.npm and configure your npm token in it
2
3
  @fortawesome:registry=https://npm.fontawesome.com/
3
4
  //npm.fontawesome.com/:_authToken=<FONT-AWSOME-TOKEN>
4
- //registry.npmjs.org/:_authToken=<NPM-K2-PUBLISH-TOKEN>
5
+ # configure this using the .env file. See .env.example
6
+ //registry.npmjs.org/:_authToken=${NPM_TOKEN}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmapserver-ng-core",
3
- "version": "2.10.9",
3
+ "version": "2.10.11",
4
4
  "description": "K2 Geospatial - JMap Server NG Core library implementation",
5
5
  "private": false,
6
6
  "main": "public/index.js",