@takeshape/util 9.14.0 → 9.15.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -4,4 +4,4 @@
4
4
 
5
5
  A grab-bag of general purpose utility functions. The home for functions that need to be shared but small enough to not warrant their own package
6
6
 
7
- .
7
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takeshape/util",
3
- "version": "9.14.0",
3
+ "version": "9.15.0",
4
4
  "description": "Shared utilities",
5
5
  "homepage": "https://www.takeshape.io",
6
6
  "repository": {
@@ -24,14 +24,14 @@
24
24
  "dom-serializer": "0.2.2",
25
25
  "draft-js": "^0.11.7",
26
26
  "htmlparser2": "^3.10.0",
27
- "lodash": "^4.17.20",
27
+ "lodash": "^4.17.21",
28
28
  "markdown-draft-js": "github:incompl/markdown-draft-js#deterministic-entity-keys-with-lib",
29
29
  "mime-types": "^2.1.27",
30
30
  "pify": "^5.0.0",
31
31
  "prismjs": "^1.25.0",
32
32
  "shortid": "^2.2.16",
33
33
  "url-parse": "^1.5.3",
34
- "@takeshape/routing": "9.14.0"
34
+ "@takeshape/routing": "9.15.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/classnames": "^2.2.9",
@@ -43,13 +43,14 @@
43
43
  "@types/prismjs": "^1.16.2",
44
44
  "@types/shortid": "^0.0.29",
45
45
  "stripe": "8.81.0",
46
- "@takeshape/typescript-jest-junit-reporter": "9.14.0"
46
+ "@takeshape/typescript-jest-junit-reporter": "9.15.0"
47
47
  },
48
48
  "engines": {
49
49
  "node": ">=16"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "pnpm build:js && pnpm build:es && pnpm build:types && pnpm build:copy",
53
+ "prebuild:ci": "pnpm clean",
53
54
  "build:ci": "pnpm build:js && pnpm build:es && pnpm build:types:ci && pnpm build:copy",
54
55
  "build:copy": "cp -rf build/src/* dist/",
55
56
  "build:es": "cross-env BABEL_MODULES=es babel src --out-dir es --extensions \".js,.ts\" --ignore '**/__tests__'",