@ribajs/shopify
Advanced tools
Comparing version 1.3.0 to 1.4.0
{ | ||
"name": "@ribajs/shopify", | ||
"description": "Shopify extension for Riba.js", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"author": "Pascal Garber <pascal@artandcode.studio>", | ||
@@ -48,5 +48,5 @@ "contributors": [], | ||
"@babel/preset-typescript": "^7.6.0", | ||
"@types/jest": "^24.0.19", | ||
"@types/jest": "^24.0.21", | ||
"@types/jquery": "^3.3.31", | ||
"@types/node": "^12.11.6", | ||
"@types/node": "^12.12.5", | ||
"babel-loader": "^8.0.6", | ||
@@ -60,8 +60,8 @@ "babel-plugin-array-includes": "^2.0.3", | ||
"webpack": "^4.41.2", | ||
"webpack-cli": "^3.3.9" | ||
"webpack-cli": "^3.3.10" | ||
}, | ||
"dependencies": { | ||
"@ribajs/core": "^1.3.0", | ||
"@ribajs/i18n": "^1.3.0" | ||
"@ribajs/core": "^1.4.0", | ||
"@ribajs/i18n": "^1.4.0" | ||
} | ||
} |
@@ -30,3 +30,3 @@ import { IBinder, Utils } from '@ribajs/core'; | ||
const vw = Utils.getViewportDimensions().w; | ||
const filterScale = window.devicePixelRatio || 1; | ||
const filterScale = Math.round(window.devicePixelRatio || 1); | ||
const filterSize = width + 'x'; | ||
@@ -33,0 +33,0 @@ const newSrc = imgUrlFormatter.read(this.customData.initialSrc, filterSize, filterScale, undefined, undefined, el); |
export * from './shopify-section.component'; | ||
export * from './shopify-linklist/shopify-linklist.component'; |
@@ -5,3 +5,3 @@ import { Debug, Component, JQuery } from '@ribajs/core'; | ||
public static tagName: string = 'rv-shopify-section'; | ||
public static tagName: string = 'shopify-section'; | ||
@@ -8,0 +8,0 @@ protected debug = Debug('component:' + ShopifySectionComponent.tagName); |
@@ -1,18 +0,11 @@ | ||
import { IRibaModule } from '@ribajs/core'; | ||
export * from './services'; | ||
export * from './binders'; | ||
export * from './formatters'; | ||
export * from './components'; | ||
export * from './interfaces'; | ||
import shopifyModule from './shopify.module'; | ||
import * as binders from './binders'; | ||
import * as components from './components'; | ||
import * as formatters from './formatters'; | ||
import * as services from './services'; | ||
export { shopifyModule }; | ||
export const shopifyModule = <IRibaModule> { | ||
binders, | ||
formatters, | ||
services, | ||
components, | ||
}; | ||
export default shopifyModule; |
@@ -22,3 +22,3 @@ { | ||
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"], | ||
"no-console": [true, "log", "info", "debug"], | ||
"no-console": [true, "log", "info"], | ||
"prefer-for-of": false, | ||
@@ -25,0 +25,0 @@ "object-literal-sort-keys": false |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74457
46
1940
Updated@ribajs/core@^1.4.0
Updated@ribajs/i18n@^1.4.0