@rechargeapps/storefront-client 0.2.0 → 0.3.0

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rechargeapps/storefront-client",
3
3
  "description": "Storefront client for Recharge",
4
- "version": "0.2.0",
4
+ "version": "0.3.0",
5
5
  "license": "ISC",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/esm/index.js",
@@ -26,7 +26,8 @@
26
26
  "@recharge-packages:registry": "https://gitlab.rechargeapps.net/api/v4/projects/196/packages/npm/"
27
27
  },
28
28
  "scripts": {
29
- "dev": "NODE_ENV=development rollup -c rollup.config.js --watch",
29
+ "dev": "concurrently 'yarn dev:rollup' 'yarn serve'",
30
+ "dev:rollup": "NODE_ENV=development rollup -c rollup.config.js --watch",
30
31
  "build": "rm -rf dist && NODE_ENV=production rollup -c rollup.config.js",
31
32
  "serve": "yarn http-server ./dist",
32
33
  "test": "vitest run --coverage",
@@ -57,6 +58,7 @@
57
58
  "@types/lodash": "4.14.182",
58
59
  "@types/qs": "6.9.7",
59
60
  "@vitest/coverage-c8": "0.23.4",
61
+ "concurrently": "7.4.0",
60
62
  "cypress": "10.9.0",
61
63
  "esbuild": "0.14.49",
62
64
  "http-server": "14.1.1",