@smithy/util-uri-escape 4.2.2 → 4.3.1
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/dist-cjs/index.js +6 -9
- package/dist-es/index.js +1 -2
- package/dist-types/index.d.ts +2 -8
- package/package.json +5 -24
- package/README.md +0 -10
- package/dist-es/escape-uri-path.js +0 -2
- package/dist-es/escape-uri.js +0 -2
- package/dist-types/escape-uri-path.d.ts +0 -4
- package/dist-types/escape-uri.d.ts +0 -4
- package/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
- package/dist-types/ts3.4/escape-uri.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +0 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
exports.escapeUri = escapeUri;
|
|
9
|
-
exports.escapeUriPath = escapeUriPath;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.escapeUriPath = exports.escapeUri = void 0;
|
|
4
|
+
var protocols_1 = require("@smithy/core/protocols");
|
|
5
|
+
Object.defineProperty(exports, "escapeUri", { enumerable: true, get: function () { return protocols_1.escapeUri; } });
|
|
6
|
+
Object.defineProperty(exports, "escapeUriPath", { enumerable: true, get: function () { return protocols_1.escapeUriPath; } });
|
package/dist-es/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export * from "./escape-uri-path";
|
|
1
|
+
export { escapeUri, escapeUriPath } from "@smithy/core/protocols";
|
package/dist-types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/util-uri-escape",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"scripts": {
|
|
5
|
-
"build": "
|
|
6
|
-
"build:cjs": "node ../../scripts/inline util-uri-escape",
|
|
7
|
-
"build:es": "yarn g:tsc -p tsconfig.es.json",
|
|
5
|
+
"build": "yarn g:tsc -p tsconfig.cjs.json && yarn g:tsc -p tsconfig.es.json && yarn g:tsc -p tsconfig.types.json",
|
|
8
6
|
"build:types": "yarn g:tsc -p tsconfig.types.json",
|
|
9
|
-
"
|
|
10
|
-
"stage-release": "
|
|
11
|
-
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
|
|
12
|
-
"lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
|
|
13
|
-
"format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
|
|
14
|
-
"test": "yarn g:vitest run",
|
|
15
|
-
"test:watch": "yarn g:vitest watch"
|
|
7
|
+
"clean": "rm -rf dist-cjs dist-es dist-types",
|
|
8
|
+
"stage-release": "rm -rf .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz"
|
|
16
9
|
},
|
|
17
10
|
"main": "./dist-cjs/index.js",
|
|
18
11
|
"module": "./dist-es/index.js",
|
|
@@ -24,18 +17,12 @@
|
|
|
24
17
|
"license": "Apache-2.0",
|
|
25
18
|
"sideEffects": false,
|
|
26
19
|
"dependencies": {
|
|
20
|
+
"@smithy/core": "^3.24.1",
|
|
27
21
|
"tslib": "^2.6.2"
|
|
28
22
|
},
|
|
29
23
|
"engines": {
|
|
30
24
|
"node": ">=18.0.0"
|
|
31
25
|
},
|
|
32
|
-
"typesVersions": {
|
|
33
|
-
"<4.5": {
|
|
34
|
-
"dist-types/*": [
|
|
35
|
-
"dist-types/ts3.4/*"
|
|
36
|
-
]
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
26
|
"files": [
|
|
40
27
|
"dist-*/**"
|
|
41
28
|
],
|
|
@@ -45,12 +32,6 @@
|
|
|
45
32
|
"url": "https://github.com/smithy-lang/smithy-typescript.git",
|
|
46
33
|
"directory": "packages/util-uri-escape"
|
|
47
34
|
},
|
|
48
|
-
"devDependencies": {
|
|
49
|
-
"concurrently": "7.0.0",
|
|
50
|
-
"downlevel-dts": "0.10.1",
|
|
51
|
-
"premove": "4.0.0",
|
|
52
|
-
"typedoc": "0.23.23"
|
|
53
|
-
},
|
|
54
35
|
"typedoc": {
|
|
55
36
|
"entryPoint": "src/index.ts"
|
|
56
37
|
},
|
package/README.md
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# @smithy/util-uri-escape
|
|
2
|
-
|
|
3
|
-
[](https://www.npmjs.com/package/@smithy/util-uri-escape)
|
|
4
|
-
[](https://www.npmjs.com/package/@smithy/util-uri-escape)
|
|
5
|
-
|
|
6
|
-
> An internal package
|
|
7
|
-
|
|
8
|
-
## Usage
|
|
9
|
-
|
|
10
|
-
You probably shouldn't, at least directly.
|
package/dist-es/escape-uri.js
DELETED