compose-paths 1.1.2 → 1.1.3
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.1.3] - 2022-01-11
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fix esbuild + Webpack errors by re-ordering package.json exports
|
|
15
|
+
|
|
10
16
|
## [1.1.2] - 2022-01-10
|
|
11
17
|
|
|
12
18
|
### Updated
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "compose-paths",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Define paths + routes without the repetition.",
|
|
5
5
|
"author": "Conan Theobald",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"module": "index.mjs",
|
|
16
16
|
"exports": {
|
|
17
17
|
"import": "./index.mjs",
|
|
18
|
-
"default": "./dist/compose-paths.cjs.js",
|
|
19
18
|
"require": "./dist/compose-paths.cjs.js",
|
|
20
|
-
"browser": "./dist/compose-paths.browser.js"
|
|
19
|
+
"browser": "./dist/compose-paths.browser.js",
|
|
20
|
+
"default": "./dist/compose-paths.cjs.js"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"dist/*",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@rollup/plugin-json": "^4.1.0",
|
|
45
45
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
46
46
|
"@rollup/plugin-replace": "^3.0.1",
|
|
47
|
-
"concurrently": "^
|
|
47
|
+
"concurrently": "^7.0.0",
|
|
48
48
|
"cross-env": "^7.0.3",
|
|
49
49
|
"esbuild": "^0.14.11",
|
|
50
50
|
"eslint": "^8.6.0",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"test": "jest",
|
|
64
|
+
"lint": "pnpx eslint src/*.js tests/*.js",
|
|
64
65
|
"build": "cross-env NODE_ENV=production pnpm run build:esbuild",
|
|
65
66
|
"build:clean": "rimraf dist/; mkdir -p dist/",
|
|
66
67
|
"build:all": "pnpm run build:clean ; cross-env NODE_ENV=production pnpm run build",
|