@ntbjs/ntb-dam-utils 1.0.1 → 1.0.2

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.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/index.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -7,6 +7,10 @@ Get an npm token and add to a .npmrc file containing:
7
7
  Then run:
8
8
  `npm i @ntbjs/ntb-dam-utils `
9
9
 
10
+ ### To contribute
11
+ Add new code and functions to master. Add new tag ie. v1.1.1, pipelines will then automaticly publish new tag to private npm repo.
12
+
13
+ When updates are made one have update tag in projects that are using this resource.
10
14
 
11
15
  ### Contains:
12
16
  - List of owners
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
- const { owners } = require("./src/config/owners");
1
+ const { owners, ownersLocale } = require("./src/config/owners");
2
2
  const { origins } = require("./src/config/origins");
3
3
  const { indexes } = require("./src/config/indexes");
4
4
 
5
- module.exports = { owners, origins, indexes };
5
+ module.exports = { owners, ownersLocale, origins, indexes };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ntbjs/ntb-dam-utils",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Shared components for NTB Mediebank",
5
5
  "main": "index",
6
6
  "scripts": {