Socket
Socket
Sign inDemoInstall

@scaleleap/amazon-marketplaces

Package Overview
Dependencies
0
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.1.0

.github/workflows/release.yml

13

CHANGELOG.md

@@ -0,1 +1,14 @@

# Changelog
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://github.com/ScaleLeap/amazon-marketplaces/compare/v1.0.2...v1.1.0) (2019-10-09)
### Features
* adds amazonMarketplacesList variable ([28b24e3](https://github.com/ScaleLeap/amazon-marketplaces/commit/28b24e3))
* adds Singapore ([f5dbdf2](https://github.com/ScaleLeap/amazon-marketplaces/commit/f5dbdf2))
## [1.0.1](https://gitlab.com/ScaleLeap/amazon-marketplaces/compare/v1.0.0...v1.0.1) (2019-08-03)

@@ -2,0 +15,0 @@

@@ -55,2 +55,6 @@ export declare const amazonMarketplaces: {

/**
* Singapore
*/
readonly SG: import("..").AmazonMarketplace;
/**
* Turkey

@@ -64,2 +68,6 @@ */

};
/**
* An array of all of the `AmazonMarketplace` objects.
*/
export declare const amazonMarketplacesList: import("..").AmazonMarketplace[];
//# sourceMappingURL=index.d.ts.map

@@ -16,2 +16,3 @@ "use strict";

const MX_1 = require("./MX");
const SG_1 = require("./SG");
const TR_1 = require("./TR");

@@ -73,2 +74,6 @@ const US_1 = require("./US");

/**
* Singapore
*/
SG: SG_1.SG,
/**
* Turkey

@@ -82,2 +87,6 @@ */

};
/**
* An array of all of the `AmazonMarketplace` objects.
*/
exports.amazonMarketplacesList = Object.values(exports.amazonMarketplaces);
//# sourceMappingURL=index.js.map

24

package.json
{
"name": "@scaleleap/amazon-marketplaces",
"version": "1.0.2",
"version": "1.1.0",
"publishConfig": {

@@ -33,7 +33,3 @@ "access": "public"

"devDependencies": {
"@semantic-release/changelog": "3.0.4",
"@semantic-release/commit-analyzer": "6.2.0",
"@semantic-release/git": "7.0.16",
"@semantic-release/npm": "5.1.13",
"@semantic-release/release-notes-generator": "7.2.1",
"@jedmao/semantic-release-npm-github-config": "1.0.7",
"@types/jest": "24.0.16",

@@ -55,17 +51,5 @@ "@types/node": "12.6.9",

"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
{
"assets": [
"package-lock.json",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
"extends": "@jedmao/semantic-release-npm-github-config",
"branch": "master"
}
}

@@ -14,2 +14,3 @@ import { AE } from './AE'

import { MX } from './MX'
import { SG } from './SG'
import { TR } from './TR'

@@ -85,2 +86,7 @@ import { US } from './US'

/**
* Singapore
*/
SG,
/**
* Turkey

@@ -95,1 +101,6 @@ */

} as const
/**
* An array of all of the `AmazonMarketplace` objects.
*/
export const amazonMarketplacesList = Object.values(amazonMarketplaces)

@@ -1,2 +0,2 @@

import { AmazonMarketplace, amazonMarketplaces } from '../src'
import { AmazonMarketplace, amazonMarketplaces, amazonMarketplacesList } from '../src'

@@ -8,2 +8,7 @@ describe('index', () => {

})
it('should also provide a list of marketplaces', () => {
expect(Array.isArray(amazonMarketplacesList)).toBeTruthy()
expect(amazonMarketplacesList.length).toBe(16)
})
})

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc