@beauraines/node-helpers 2.0.0 → 2.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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,12 +1,12 @@
1
1
 
2
- const azureStorage = require("./src/azure")
2
+ const AzureStorage = require("./src/azure")
3
3
  const credentials = require("./src/credentials.js");
4
4
  const database = require("./src/database");
5
5
  const helpers = require("./src/helpers");
6
6
  const jira = require("./src/jira");
7
7
 
8
8
  module.exports = {
9
- azureStorage,
9
+ AzureStorage,
10
10
  credentials,
11
11
  database,
12
12
  helpers,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/node-helpers",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Collection of node helpers",
5
5
  "main": "index.js",
6
6
  "scripts": {