compose-paths 1.2.1 → 1.2.2
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.
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.2.2] - 2022-04-15
|
|
11
|
+
|
|
12
|
+
### Removed / Fixed
|
|
13
|
+
|
|
14
|
+
- Remove `browser` setting from `package.json`; seems to cause issues with CodeSandbox build process, and isn't really necessary since the browser-build is something that's interacted with manually.
|
|
15
|
+
|
|
10
16
|
## [1.2.1] - 2022-02-07
|
|
11
17
|
|
|
12
18
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "compose-paths",
|
|
3
3
|
"browserGlobalName": "composePaths",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.2",
|
|
5
5
|
"description": "Define paths + routes without the repetition.",
|
|
6
6
|
"author": "Conan Theobald",
|
|
7
7
|
"license": "MIT",
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
"exports": {
|
|
19
19
|
"import": "./index.mjs",
|
|
20
20
|
"require": "./dist/cjs/compose-paths.cjs.js",
|
|
21
|
-
"browser": "./dist/browser/compose-paths.browser.js",
|
|
22
21
|
"default": "./dist/cjs/compose-paths.cjs.js"
|
|
23
22
|
},
|
|
24
23
|
"files": [
|
|
@@ -43,15 +42,15 @@
|
|
|
43
42
|
"email": "bugs+compose-paths@conans.co.uk"
|
|
44
43
|
},
|
|
45
44
|
"devDependencies": {
|
|
46
|
-
"concurrently": "^7.
|
|
45
|
+
"concurrently": "^7.1.0",
|
|
47
46
|
"cross-env": "^7.0.3",
|
|
48
|
-
"esbuild": "^0.14.
|
|
49
|
-
"eslint": "^8.
|
|
50
|
-
"eslint-plugin-jest": "^26.1.
|
|
51
|
-
"jest": "^27.5.
|
|
52
|
-
"match-iz": "^
|
|
47
|
+
"esbuild": "^0.14.36",
|
|
48
|
+
"eslint": "^8.13.0",
|
|
49
|
+
"eslint-plugin-jest": "^26.1.4",
|
|
50
|
+
"jest": "^27.5.1",
|
|
51
|
+
"match-iz": "^3.3.1",
|
|
53
52
|
"rimraf": "^3.0.2",
|
|
54
|
-
"typescript": "^4.
|
|
53
|
+
"typescript": "^4.6.3",
|
|
55
54
|
"url-join": "^4.0.1"
|
|
56
55
|
},
|
|
57
56
|
"scripts": {
|