@spscommerce/utils 6.11.3 → 6.11.4

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/tsconfig.json +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spscommerce/utils",
3
3
  "description": "Utility items for frontend projects.",
4
- "version": "6.11.3",
4
+ "version": "6.11.4",
5
5
  "author": "SPS Commerce",
6
6
  "license": "UNLICENSED",
7
7
  "repository": "https://github.com/spscommerce/design-system/tree/main/packages/@spscommerce/utils",
@@ -27,7 +27,7 @@
27
27
  "build:types": "tsc --emitDeclarationOnly --declaration --declarationDir lib",
28
28
  "watch": "vite build --watch",
29
29
  "clean": "git clean -fdX",
30
- "pub": "pnpm pack && node ../../scripts/publish-package.js"
30
+ "pub": "pnpm pack && node ../../../scripts/publish-package.js"
31
31
  },
32
32
  "readme": "[//]: # \"START_AUTOGENERATED\"\n\n## [@spscommerce/utils](https://github.com/spscommerce/design-system/tree/main/packages/@spscommerce/utils#readme)\n\n![release: 1.1.0](https://img.shields.io/badge/release-1.1.0-blue.svg?style=flat-square)\n![build: passing](https://img.shields.io/badge/build-passing-green.svg?style=flat-square)\n![tests: failing](https://img.shields.io/badge/tests-failing-red.svg?style=flat-square)\n\nUtility items for frontend projects. \n \n ### Installation \n \n ```shell\nnpm install --save @spscommerce/utils\n```\n\n#### Peer Dependencies\n\n<div class=\"row\">\n <div class=\"col-5\"> \n <table class=\"sps-table\">\n <thead class=\"sps-table__head\">\n <tr class=\"sps-table__row\">\n <th class=\"sps-table__header\">\n <span class=\"sps-table__header-cell-body\"> \n Package\n </span>\n </th>\n <th class=\"sps-table__header text-right\">\n <span class=\"sps-table__header-cell-body\"> \n Version\n </span>\n </th>\n </tr>\n </thead>\n <tbody class=\"sps-table__body\">\n <tr class=\"sps-table__row\"><td class=\"sps-table__cell\"><a href=\"https://lodash.com/\">lodash.isempty</a></td><td class=\"sps-table__cell text-right\">^4.4.0</td></tr>\n<tr class=\"sps-table__row\"><td class=\"sps-table__cell\"><a href=\"https://lodash.com/\">lodash.isnil</a></td><td class=\"sps-table__cell text-right\">^4.0.0</td></tr>\n<tr class=\"sps-table__row\"><td class=\"sps-table__cell\"><a href=\"https://lodash.com/\">lodash.isplainobject</a></td><td class=\"sps-table__cell text-right\">^4.0.6</td></tr>\n<tr class=\"sps-table__row\"><td class=\"sps-table__cell\"><a href=\"https://lodash.com/\">lodash.padstart</a></td><td class=\"sps-table__cell text-right\">^4.6.1</td></tr>\n </tbody>\n </table>\n </div>\n <div class=\"col-7\">\n &nbsp;\n </div>\n</div>\n\n[//]: # \"END_AUTOGENERATED\"\n"
33
33
  }
package/tsconfig.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
- "extends": "../../tsconfig.base.json",
2
+ "extends": "../../../tsconfig.base.json",
3
3
  "compilerOptions": {
4
4
  "baseUrl": "tsconfig",
5
5
  "rootDir": "src/",
6
6
  "outDir": "./dist/out-tsc",
7
- "target": "es5",
7
+ "target": "esnext",
8
8
  "esModuleInterop": true,
9
9
  "declaration": true
10
10
  },