@elliemae/ds-shared 3.0.0-next.48 → 3.0.0-next.51

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 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-shared",
3
- "version": "3.0.0-next.48",
3
+ "version": "3.0.0-next.51",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Shared components and utilities",
6
6
  "files": [
@@ -210,13 +210,20 @@
210
210
  "reportFile": "tests.xml",
211
211
  "indent": 4
212
212
  },
213
+ "scripts": {
214
+ "test": "node ../../scripts/testing/test.mjs",
215
+ "lint": "node ../../scripts/lint.mjs",
216
+ "dts": "node ../../scripts/dts.mjs",
217
+ "build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
218
+ "dev": "cross-env NODE_ENV=development node ../../scripts/build/build.mjs --watch"
219
+ },
213
220
  "publishConfig": {
214
221
  "access": "public",
215
222
  "typeSafety": false
216
223
  },
217
224
  "dependencies": {
218
- "@elliemae/ds-popover": "3.0.0-next.48",
219
- "@elliemae/ds-utilities": "3.0.0-next.48",
225
+ "@elliemae/ds-popover": "workspace:*",
226
+ "@elliemae/ds-utilities": "workspace:*",
220
227
  "hoist-non-react-statics": "~3.3.2",
221
228
  "hotkeys-js": "~3.8.7",
222
229
  "prop-types": "~15.8.1",
@@ -231,12 +238,5 @@
231
238
  "lodash": "~4.17.21",
232
239
  "react": "~17.0.2",
233
240
  "react-dom": "~17.0.2"
234
- },
235
- "scripts": {
236
- "test": "node ../../scripts/testing/test.mjs",
237
- "lint": "node ../../scripts/lint.mjs",
238
- "dts": "node ../../scripts/dts.mjs",
239
- "build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
240
- "dev": "cross-env NODE_ENV=development node ../../scripts/build/build.mjs --watch"
241
241
  }
242
- }
242
+ }