@just-web/presets-browser 7.0.6 → 7.1.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.
@@ -0,0 +1,4 @@
1
+ export * from '@just-web/browser-preferences/testing';
2
+ export * from '@just-web/browser/testing';
3
+ export * from '@just-web/history/testing';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../ts/testing/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAA;AACrD,cAAc,2BAA2B,CAAA;AACzC,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("@just-web/browser-preferences/testing"), exports);
18
+ __exportStar(require("@just-web/browser/testing"), exports);
19
+ __exportStar(require("@just-web/history/testing"), exports);
20
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../ts/testing/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wEAAqD;AACrD,4DAAyC;AACzC,4DAAyC"}
@@ -0,0 +1,4 @@
1
+ export * from '@just-web/browser-preferences/testing';
2
+ export * from '@just-web/browser/testing';
3
+ export * from '@just-web/history/testing';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../ts/testing/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAA;AACrD,cAAc,2BAA2B,CAAA;AACzC,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,4 @@
1
+ export * from '@just-web/browser-preferences/testing';
2
+ export * from '@just-web/browser/testing';
3
+ export * from '@just-web/history/testing';
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../ts/testing/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAA;AACrD,cAAc,2BAA2B,CAAA;AACzC,cAAc,2BAA2B,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-web/presets-browser",
3
- "version": "7.0.6",
3
+ "version": "7.1.0",
4
4
  "description": "just-web presets for browser related features",
5
5
  "keywords": [
6
6
  "just-web",
@@ -34,6 +34,17 @@
34
34
  "require": "./cjs/index.js"
35
35
  },
36
36
  "default": "./esm/index.js"
37
+ },
38
+ "./testing": {
39
+ "import": {
40
+ "types": "./esm/testing/index.d.ts",
41
+ "default": "./esm/testing/index.js"
42
+ },
43
+ "require": {
44
+ "types": "./cjs/testing/index.d.ts",
45
+ "default": "./cjs/testing/index.js"
46
+ },
47
+ "default": "./esm/testing/index.js"
37
48
  }
38
49
  },
39
50
  "main": "./cjs/index.js",
@@ -42,13 +53,14 @@
42
53
  "files": [
43
54
  "cjs",
44
55
  "esm",
56
+ "testing",
45
57
  "ts",
46
58
  "!**/*.{spec,test,unit,accept,integrate,system,perf,stress}.*"
47
59
  ],
48
60
  "dependencies": {
49
- "@just-web/browser": "^8.0.3",
50
- "@just-web/browser-preferences": "^8.0.3",
51
- "@just-web/history": "^2.0.9"
61
+ "@just-web/browser": "^8.1.0",
62
+ "@just-web/browser-preferences": "^8.1.0",
63
+ "@just-web/history": "^2.1.0"
52
64
  },
53
65
  "devDependencies": {
54
66
  "@repobuddy/jest": "^3.3.0",
@@ -57,7 +69,6 @@
57
69
  "@types/jest": "^29.5.1",
58
70
  "cross-env": "^7.0.3",
59
71
  "depcheck": "~1.4.3",
60
- "history": "^5.3.0",
61
72
  "jest": "^29.5.0",
62
73
  "jest-validate": "^29.5.0",
63
74
  "jest-watch-suspend": "^1.1.2",
@@ -0,0 +1 @@
1
+ export * from '../cjs/testing'
@@ -0,0 +1 @@
1
+ module.exports = require('../cjs/testing')
@@ -0,0 +1,3 @@
1
+ export * from '@just-web/browser-preferences/testing'
2
+ export * from '@just-web/browser/testing'
3
+ export * from '@just-web/history/testing'