@azure/core-paging 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
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
## 1.1.3 (2020-09-30)
|
|
4
|
+
|
|
5
|
+
- Also pack `esm` build in addition to `commonjs` build. This fixes the warning about `core-paging` in Angular 10 applications [Issue 11550](https://github.com/Azure/azure-sdk-for-js/issues/11550).
|
|
6
|
+
|
|
3
7
|
## 1.1.2 (2020-09-02)
|
|
4
8
|
|
|
5
9
|
- Provided down-leveled type declaration files to support older TypeScript versions 3.1 to 3.6.
|
package/package.json
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/core-paging",
|
|
3
|
-
"author":
|
|
4
|
-
"name": "Microsoft Corporation",
|
|
5
|
-
"email": "azsdkteam@microsoft.com",
|
|
6
|
-
"url": "https://github.com/Azure/azure-sdk-for-js"
|
|
7
|
-
},
|
|
3
|
+
"author": "Microsoft Corporation",
|
|
8
4
|
"sdk-type": "client",
|
|
9
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.3",
|
|
10
6
|
"description": "Core types for paging async iterable iterators",
|
|
11
7
|
"tags": [
|
|
12
8
|
"microsoft",
|
|
@@ -14,10 +10,13 @@
|
|
|
14
10
|
],
|
|
15
11
|
"keywords": [
|
|
16
12
|
"microsoft",
|
|
17
|
-
"clientruntime"
|
|
13
|
+
"clientruntime",
|
|
14
|
+
"azure",
|
|
15
|
+
"cloud"
|
|
18
16
|
],
|
|
19
|
-
"main": "
|
|
20
|
-
"
|
|
17
|
+
"main": "dist/index.js",
|
|
18
|
+
"module": "dist-esm/src/index.js",
|
|
19
|
+
"types": "./types/latest/core-paging.d.ts",
|
|
21
20
|
"typesVersions": {
|
|
22
21
|
"<3.6": {
|
|
23
22
|
"types/latest/*": [
|
|
@@ -26,34 +25,35 @@
|
|
|
26
25
|
}
|
|
27
26
|
},
|
|
28
27
|
"files": [
|
|
29
|
-
"types/latest/
|
|
28
|
+
"types/latest/core-paging.d.ts",
|
|
30
29
|
"types/3.1",
|
|
31
|
-
"dist
|
|
30
|
+
"dist/index.js",
|
|
31
|
+
"dist-esm/src/index.js",
|
|
32
32
|
"LICENSE",
|
|
33
33
|
"README.md"
|
|
34
34
|
],
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
"repository": {
|
|
38
|
-
"type": "git",
|
|
39
|
-
"url": "git@github.com:Azure/azure-sdk-for-js.git"
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=8.0.0"
|
|
40
37
|
},
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/core-paging/README.md",
|
|
40
|
+
"repository": "github:Azure/azure-sdk-for-js",
|
|
41
41
|
"bugs": {
|
|
42
|
-
"url": "
|
|
42
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
46
|
-
"build": "tsc -p .",
|
|
46
|
+
"build": "tsc -p tsconfig.json && tsc -p tsconfig.es.json",
|
|
47
47
|
"build:test": "echo skipped",
|
|
48
48
|
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"",
|
|
49
|
-
"clean": "
|
|
49
|
+
"clean": "rimraf dist dist-esm",
|
|
50
50
|
"execute:samples": "echo skipped",
|
|
51
51
|
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"",
|
|
52
52
|
"integration-test:browser": "echo skipped",
|
|
53
53
|
"integration-test:node": "echo skipped",
|
|
54
54
|
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
55
|
-
"lint": "eslint
|
|
56
|
-
"lint:fix": "eslint
|
|
55
|
+
"lint": "eslint package.json src --ext .ts",
|
|
56
|
+
"lint:fix": "eslint package.json src --ext .ts --fix --fix-type [problem,suggestion]",
|
|
57
57
|
"pack": "npm pack 2>&1",
|
|
58
58
|
"prebuild": "npm run clean",
|
|
59
59
|
"test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
|
|
@@ -69,14 +69,9 @@
|
|
|
69
69
|
"@azure/core-asynciterator-polyfill": "^1.0.0"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
72
73
|
"@types/node": "^8.0.0",
|
|
73
|
-
"@typescript-eslint/eslint-plugin": "^2.0.0",
|
|
74
|
-
"@typescript-eslint/parser": "^2.0.0",
|
|
75
74
|
"eslint": "^6.1.0",
|
|
76
|
-
"eslint-config-prettier": "^6.0.0",
|
|
77
|
-
"eslint-plugin-no-null": "^1.0.2",
|
|
78
|
-
"eslint-plugin-no-only-tests": "^2.3.0",
|
|
79
|
-
"eslint-plugin-promise": "^4.1.1",
|
|
80
75
|
"prettier": "^1.16.4",
|
|
81
76
|
"typescript": "~3.9.3"
|
|
82
77
|
}
|
|
File without changes
|
|
File without changes
|