@takeshape/util 8.251.2 → 8.255.8

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 (1) hide show
  1. package/package.json +11 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takeshape/util",
3
- "version": "8.251.2",
3
+ "version": "8.255.8",
4
4
  "description": "Shared utilities",
5
5
  "homepage": "https://www.takeshape.io",
6
6
  "repository": {
@@ -21,7 +21,6 @@
21
21
  "es"
22
22
  ],
23
23
  "dependencies": {
24
- "@takeshape/routing": "8.251.2",
25
24
  "@types/url-parse": "^1.4.4",
26
25
  "classnames": "^2.2.5",
27
26
  "dom-serializer": "0.2.2",
@@ -33,12 +32,18 @@
33
32
  "pify": "^5.0.0",
34
33
  "prismjs": "^1.25.0",
35
34
  "shortid": "^2.2.16",
36
- "url-parse": "^1.5.3"
35
+ "url-parse": "^1.5.3",
36
+ "@takeshape/routing": "8.255.8"
37
37
  },
38
38
  "devDependencies": {
39
+ "@types/classnames": "^2.2.9",
40
+ "@types/draft-js": "^0.10.32",
39
41
  "@types/lodash": "^4.14.165",
42
+ "@types/markdown-draft-js": "^2.2.4",
40
43
  "@types/mime-types": "^2.1.0",
41
44
  "@types/pify": "^3.0.2",
45
+ "@types/prismjs": "^1.16.2",
46
+ "@types/shortid": "^0.0.29",
42
47
  "stripe": "8.81.0"
43
48
  },
44
49
  "sideEffects": false,
@@ -46,7 +51,7 @@
46
51
  "lint": "eslint . --ext .js,.ts",
47
52
  "lint:code:ci": "eslint . --ext .js,.ts --format junit -o \"${HOME}/test-results/${npm_package_name#*\\/}/eslint-results.xml\"",
48
53
  "test": "jest",
49
- "test-changed": "pnpm run test -- --changedSince=master",
54
+ "test-changed": "pnpm run test --changedSince=master",
50
55
  "test:ci": "JEST_JUNIT_OUTPUT_DIR=\"${HOME}/test-results/${npm_package_name#*\\/}\" JEST_JUNIT_OUTPUT_NAME=jest-results.xml jest --ci --reporters=default --reporters=jest-junit",
51
56
  "typecheck": "tsc --noEmit",
52
57
  "clean": "rimraf dist es build *.tsbuildinfo",
@@ -55,8 +60,7 @@
55
60
  "build:js": "cross-env BABEL_MODULES=commonjs babel src --out-dir dist --extensions \".js,.ts\" --ignore '**/__tests__'",
56
61
  "build:es": "cross-env BABEL_MODULES=es babel src --out-dir es --extensions \".js,.ts\" --ignore '**/__tests__'",
57
62
  "build:copy": "cp -rf build/src/* dist/",
58
- "will-it-blend": "pnpm typecheck && pnpm lint -- --quiet && pnpm test -- --silent --coverage false",
63
+ "will-it-blend": "pnpm typecheck && pnpm lint --quiet && pnpm test --silent --coverage false",
59
64
  "todo": "leasot 'src/**/*.{js,jsx,ts,tsx}'"
60
- },
61
- "readme": "# Util\n\n## Summary\n\nA grab-bag of general purpose utility functions. The home for functions that need to be shared but small enough to not\nwarrant their own package\n"
65
+ }
62
66
  }