@everymatrix/cashier-method-details 1.41.0 → 1.43.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/cashier-method-details",
3
- "version": "1.41.0",
3
+ "version": "1.43.0",
4
4
  "main": "index.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "a1aaa3db1a2ef037a353887d3c171ebe10f9403a"
38
+ "gitHead": "2b46cd3311230285da87ca4b133f9dd5735a0db7"
39
39
  }
package/rollup.config.js CHANGED
@@ -5,6 +5,7 @@ import serve from 'rollup-plugin-dev-server';
5
5
  import livereload from 'rollup-plugin-livereload';
6
6
  import { terser } from 'rollup-plugin-terser';
7
7
  import sveltePreprocess from 'svelte-preprocess';
8
+ import image from '@rollup/plugin-image';
8
9
  import typescript from '@rollup/plugin-typescript';
9
10
  import postcss from 'rollup-plugin-postcss';
10
11
  const production = process.env.NODE_ENV === 'production';
@@ -44,6 +45,7 @@ export default {
44
45
  port: 5050,
45
46
  }),
46
47
  dev && livereload({ watch: ['', 'dist'] }),
48
+ image(),
47
49
  typescript({
48
50
  sourceMap: !production,
49
51
  inlineSources: !production,