Launch Week Day 5: Introducing Reachability for PHP.Learn More
Socket
Book a DemoSign in
Socket

azure-storage-simple

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-storage-simple - npm Package Compare versions

Comparing version
0.2.1
to
0.2.2
+4
-4
package.json
{
"name": "azure-storage-simple",
"version": "0.2.1",
"version": "0.2.2",
"description": "Simplified Interfaces for Azure Storage Services (Tables, Queues, Blob)",

@@ -39,5 +39,5 @@ "main": "src/index.js",

"test": "npm run lint && npm run coverage && (npm run coverage-check || node scripts/open-coverage-report)",
"publish-major": "npm run build && npm version major && npm publish && git push origin master && git push --tags",
"publish-minor": "npm run build && npm version minor && npm publish && git push origin master && git push --tags",
"publish-patch": "npm run build && npm version patch && npm publish && git push origin master && git push --tags"
"publish-major": "npm version major && npm publish && git push origin master && git push --tags",
"publish-minor": "npm version minor && npm publish && git push origin master && git push --tags",
"publish-patch": "npm version patch && npm publish && git push origin master && git push --tags"
},

@@ -44,0 +44,0 @@ "devDependencies": {

@@ -1,3 +0,3 @@

module.export = function createBlobWrapper(store,key,name) {
module.exports = function createBlobWrapper(store,key,name) {
return {}; //nothing yet
};

@@ -11,3 +11,3 @@ var azure = require('azure-storage');

//key for caching service instances
var svcCacheKey = `${store}/${key}`;
var svcCacheKey = [store,key].join('/');

@@ -14,0 +14,0 @@ //instance of azure queue service