@microsoft/applicationinsights-react-native 2.4.2-nightly.2111-09 → 2.4.2-nightly.2111-10

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.
@@ -1,361 +0,0 @@
1
- /**
2
- * Config file for API Extractor. For more info, please visit: https://api-extractor.com
3
- */
4
- {
5
- "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
6
-
7
- /**
8
- * Optionally specifies another JSON config file that this file extends from. This provides a way for
9
- * standard settings to be shared across multiple projects.
10
- *
11
- * If the path starts with "./" or "../", the path is resolved relative to the folder of the file that contains
12
- * the "extends" field. Otherwise, the first path segment is interpreted as an NPM package name, and will be
13
- * resolved using NodeJS require().
14
- *
15
- * SUPPORTED TOKENS: none
16
- * DEFAULT VALUE: ""
17
- */
18
- // "extends": "./shared/api-extractor-base.json"
19
- // "extends": "my-package/include/api-extractor-base.json"
20
-
21
- /**
22
- * Determines the "<projectFolder>" token that can be used with other config file settings. The project folder
23
- * typically contains the tsconfig.json and package.json config files, but the path is user-defined.
24
- *
25
- * The path is resolved relative to the folder of the config file that contains the setting.
26
- *
27
- * The default value for "projectFolder" is the token "<lookup>", which means the folder is determined by traversing
28
- * parent folders, starting from the folder containing api-extractor.json, and stopping at the first folder
29
- * that contains a tsconfig.json file. If a tsconfig.json file cannot be found in this way, then an error
30
- * will be reported.
31
- *
32
- * SUPPORTED TOKENS: <lookup>
33
- * DEFAULT VALUE: "<lookup>"
34
- */
35
- "projectFolder": ".",
36
-
37
- /**
38
- * (REQUIRED) Specifies the .d.ts file to be used as the starting point for analysis. API Extractor
39
- * analyzes the symbols exported by this module.
40
- *
41
- * The file extension must be ".d.ts" and not ".ts".
42
- *
43
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
44
- * prepend a folder token such as "<projectFolder>".
45
- *
46
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
47
- */
48
- "mainEntryPointFilePath": "<projectFolder>/types/index.d.ts",
49
-
50
- /**
51
- * A list of NPM package names whose exports should be treated as part of this package.
52
- *
53
- * For example, suppose that Webpack is used to generate a distributed bundle for the project "library1",
54
- * and another NPM package "library2" is embedded in this bundle. Some types from library2 may become part
55
- * of the exported API for library1, but by default API Extractor would generate a .d.ts rollup that explicitly
56
- * imports library2. To avoid this, we can specify:
57
- *
58
- * "bundledPackages": [ "library2" ],
59
- *
60
- * This would direct API Extractor to embed those types directly in the .d.ts rollup, as if they had been
61
- * local files for library1.
62
- */
63
- "bundledPackages": [
64
- ],
65
-
66
- /**
67
- * Determines how the TypeScript compiler engine will be invoked by API Extractor.
68
- */
69
- "compiler": {
70
- /**
71
- * Specifies the path to the tsconfig.json file to be used by API Extractor when analyzing the project.
72
- *
73
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
74
- * prepend a folder token such as "<projectFolder>".
75
- *
76
- * Note: This setting will be ignored if "overrideTsconfig" is used.
77
- *
78
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
79
- * DEFAULT VALUE: "<projectFolder>/tsconfig.json"
80
- */
81
- // "tsconfigFilePath": "<projectFolder>/tsconfig.json",
82
-
83
- /**
84
- * Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk.
85
- * The object must conform to the TypeScript tsconfig schema:
86
- *
87
- * http://json.schemastore.org/tsconfig
88
- *
89
- * If omitted, then the tsconfig.json file will be read from the "projectFolder".
90
- *
91
- * DEFAULT VALUE: no overrideTsconfig section
92
- */
93
- // "overrideTsconfig": {
94
- // . . .
95
- // }
96
-
97
- /**
98
- * This option causes the compiler to be invoked with the --skipLibCheck option. This option is not recommended
99
- * and may cause API Extractor to produce incomplete or incorrect declarations, but it may be required when
100
- * dependencies contain declarations that are incompatible with the TypeScript engine that API Extractor uses
101
- * for its analysis. Where possible, the underlying issue should be fixed rather than relying on skipLibCheck.
102
- *
103
- * DEFAULT VALUE: false
104
- */
105
- // "skipLibCheck": true,
106
- },
107
-
108
- /**
109
- * Configures how the API report file (*.api.md) will be generated.
110
- */
111
- "apiReport": {
112
- /**
113
- * (REQUIRED) Whether to generate an API report.
114
- */
115
- "enabled": true,
116
-
117
- /**
118
- * The filename for the API report files. It will be combined with "reportFolder" or "reportTempFolder" to produce
119
- * a full file path.
120
- *
121
- * The file extension should be ".api.md", and the string should not contain a path separator such as "\" or "/".
122
- *
123
- * SUPPORTED TOKENS: <packageName>, <unscopedPackageName>
124
- * DEFAULT VALUE: "<unscopedPackageName>.api.md"
125
- */
126
- "reportFileName": "<unscopedPackageName>.api.md",
127
-
128
- /**
129
- * Specifies the folder where the API report file is written. The file name portion is determined by
130
- * the "reportFileName" setting.
131
- *
132
- * The API report file is normally tracked by Git. Changes to it can be used to trigger a branch policy,
133
- * e.g. for an API review.
134
- *
135
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
136
- * prepend a folder token such as "<projectFolder>".
137
- *
138
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
139
- * DEFAULT VALUE: "<projectFolder>/etc/"
140
- */
141
- "reportFolder": "<projectFolder>/dist/",
142
-
143
- /**
144
- * Specifies the folder where the temporary report file is written. The file name portion is determined by
145
- * the "reportFileName" setting.
146
- *
147
- * After the temporary file is written to disk, it is compared with the file in the "reportFolder".
148
- * If they are different, a production build will fail.
149
- *
150
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
151
- * prepend a folder token such as "<projectFolder>".
152
- *
153
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
154
- * DEFAULT VALUE: "<projectFolder>/temp/"
155
- */
156
- // "reportTempFolder": "<projectFolder>/temp/"
157
- },
158
-
159
- /**
160
- * Configures how the doc model file (*.api.json) will be generated.
161
- */
162
- "docModel": {
163
- /**
164
- * (REQUIRED) Whether to generate a doc model file.
165
- */
166
- "enabled": true,
167
-
168
- /**
169
- * The output path for the doc model file. The file extension should be ".api.json".
170
- *
171
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
172
- * prepend a folder token such as "<projectFolder>".
173
- *
174
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
175
- * DEFAULT VALUE: "<projectFolder>/temp/<unscopedPackageName>.api.json"
176
- */
177
- "apiJsonFilePath": "<projectFolder>/dist/<unscopedPackageName>.api.json"
178
- },
179
-
180
- /**
181
- * Configures how the .d.ts rollup file will be generated.
182
- */
183
- "dtsRollup": {
184
- /**
185
- * (REQUIRED) Whether to generate the .d.ts rollup file.
186
- */
187
- "enabled": true,
188
-
189
- /**
190
- * Specifies the output path for a .d.ts rollup file to be generated without any trimming.
191
- * This file will include all declarations that are exported by the main entry point.
192
- *
193
- * If the path is an empty string, then this file will not be written.
194
- *
195
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
196
- * prepend a folder token such as "<projectFolder>".
197
- *
198
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
199
- * DEFAULT VALUE: "<projectFolder>/dist/<unscopedPackageName>.d.ts"
200
- */
201
- "untrimmedFilePath": "<projectFolder>/dist/<unscopedPackageName>.d.ts",
202
-
203
- /**
204
- * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "beta" release.
205
- * This file will include only declarations that are marked as "@public" or "@beta".
206
- *
207
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
208
- * prepend a folder token such as "<projectFolder>".
209
- *
210
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
211
- * DEFAULT VALUE: ""
212
- */
213
- // "betaTrimmedFilePath": "<projectFolder>/dist/<unscopedPackageName>-beta.d.ts",
214
-
215
-
216
- /**
217
- * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "public" release.
218
- * This file will include only declarations that are marked as "@public".
219
- *
220
- * If the path is an empty string, then this file will not be written.
221
- *
222
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
223
- * prepend a folder token such as "<projectFolder>".
224
- *
225
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
226
- * DEFAULT VALUE: ""
227
- */
228
- // "publicTrimmedFilePath": "<projectFolder>/dist/<unscopedPackageName>-public.d.ts",
229
-
230
- /**
231
- * When a declaration is trimmed, by default it will be replaced by a code comment such as
232
- * "Excluded from this release type: exampleMember". Set "omitTrimmingComments" to true to remove the
233
- * declaration completely.
234
- *
235
- * DEFAULT VALUE: false
236
- */
237
- // "omitTrimmingComments": true
238
- },
239
-
240
- /**
241
- * Configures how the tsdoc-metadata.json file will be generated.
242
- */
243
- "tsdocMetadata": {
244
- /**
245
- * Whether to generate the tsdoc-metadata.json file.
246
- *
247
- * DEFAULT VALUE: true
248
- */
249
- // "enabled": true,
250
-
251
- /**
252
- * Specifies where the TSDoc metadata file should be written.
253
- *
254
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
255
- * prepend a folder token such as "<projectFolder>".
256
- *
257
- * The default value is "<lookup>", which causes the path to be automatically inferred from the "tsdocMetadata",
258
- * "typings" or "main" fields of the project's package.json. If none of these fields are set, the lookup
259
- * falls back to "tsdoc-metadata.json" in the package folder.
260
- *
261
- * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
262
- * DEFAULT VALUE: "<lookup>"
263
- */
264
- // "tsdocMetadataFilePath": "<projectFolder>/dist/tsdoc-metadata.json"
265
- },
266
-
267
- /**
268
- * Configures how API Extractor reports error and warning messages produced during analysis.
269
- *
270
- * There are three sources of messages: compiler messages, API Extractor messages, and TSDoc messages.
271
- */
272
- "messages": {
273
- /**
274
- * Configures handling of diagnostic messages reported by the TypeScript compiler engine while analyzing
275
- * the input .d.ts files.
276
- *
277
- * TypeScript message identifiers start with "TS" followed by an integer. For example: "TS2551"
278
- *
279
- * DEFAULT VALUE: A single "default" entry with logLevel=warning.
280
- */
281
- "compilerMessageReporting": {
282
- /**
283
- * Configures the default routing for messages that don't match an explicit rule in this table.
284
- */
285
- "default": {
286
- /**
287
- * Specifies whether the message should be written to the the tool's output log. Note that
288
- * the "addToApiReportFile" property may supersede this option.
289
- *
290
- * Possible values: "error", "warning", "none"
291
- *
292
- * Errors cause the build to fail and return a nonzero exit code. Warnings cause a production build fail
293
- * and return a nonzero exit code. For a non-production build (e.g. when "api-extractor run" includes
294
- * the "--local" option), the warning is displayed but the build will not fail.
295
- *
296
- * DEFAULT VALUE: "warning"
297
- */
298
- "logLevel": "warning",
299
-
300
- /**
301
- * When addToApiReportFile is true: If API Extractor is configured to write an API report file (.api.md),
302
- * then the message will be written inside that file; otherwise, the message is instead logged according to
303
- * the "logLevel" option.
304
- *
305
- * DEFAULT VALUE: false
306
- */
307
- // "addToApiReportFile": false
308
- },
309
-
310
- // "TS2551": {
311
- // "logLevel": "warning",
312
- // "addToApiReportFile": true
313
- // },
314
- //
315
- // . . .
316
- },
317
-
318
- /**
319
- * Configures handling of messages reported by API Extractor during its analysis.
320
- *
321
- * API Extractor message identifiers start with "ae-". For example: "ae-extra-release-tag"
322
- *
323
- * DEFAULT VALUE: See api-extractor-defaults.json for the complete table of extractorMessageReporting mappings
324
- */
325
- "extractorMessageReporting": {
326
- "default": {
327
- "logLevel": "warning",
328
- // "addToApiReportFile": false
329
- },
330
-
331
- "ae-missing-release-tag": {
332
- "logLevel": "none"
333
- },
334
- //
335
- // . . .
336
- },
337
-
338
- /**
339
- * Configures handling of messages reported by the TSDoc parser when analyzing code comments.
340
- *
341
- * TSDoc message identifiers start with "tsdoc-". For example: "tsdoc-link-tag-unescaped-text"
342
- *
343
- * DEFAULT VALUE: A single "default" entry with logLevel=warning.
344
- */
345
- "tsdocMessageReporting": {
346
- "default": {
347
- "logLevel": "warning",
348
- // "addToApiReportFile": false
349
- }
350
-
351
- // "tsdoc-link-tag-unescaped-text": {
352
- // "logLevel": "warning",
353
- // "addToApiReportFile": true
354
- // },
355
- //
356
- // . . .
357
- }
358
- }
359
-
360
- }
361
-
@@ -1,27 +0,0 @@
1
- (node:3888) ExperimentalWarning: The fs.promises API is experimental
2
-
3
- dist-esm/index.js → browser/applicationinsights-react-native.min.js...
4
- (!) Missing global variable name
5
- Use output.globals to specify browser global variable names corresponding to external modules
6
- react-native-device-info (guessing 'DeviceInfo')
7
- created browser/applicationinsights-react-native.min.js in 2.4s
8
-
9
- dist-esm/index.js → browser/applicationinsights-react-native.js...
10
- (!) Missing global variable name
11
- Use output.globals to specify browser global variable names corresponding to external modules
12
- react-native-device-info (guessing 'DeviceInfo')
13
- created browser/applicationinsights-react-native.js in 750ms
14
-
15
- dist-esm/index.js → dist/applicationinsights-react-native.min.js...
16
- (!) Missing global variable name
17
- Use output.globals to specify browser global variable names corresponding to external modules
18
- react-native-device-info (guessing 'DeviceInfo')
19
- created dist/applicationinsights-react-native.min.js in 1.8s
20
-
21
- dist-esm/index.js → dist/applicationinsights-react-native.js...
22
- (!) Missing global variable name
23
- Use output.globals to specify browser global variable names corresponding to external modules
24
- react-native-device-info (guessing 'DeviceInfo')
25
- created dist/applicationinsights-react-native.js in 692ms
26
- Warning: The API report file was missing, so a new file was created. Please add this file to Git:
27
- D:\a\1\s\extensions\applicationinsights-react-native\dist\applicationinsights-react-native.api.md
@@ -1,286 +0,0 @@
1
- Unable to calculate incremental build state: Error: Cannot read property 'readFile' of undefined
2
- Error loading config file: D:\a\1\s\extensions\applicationinsights-react-native\config\rig.json
3
-
4
- Rush will proceed without incremental build, caching, and change detection.
5
-
6
- Invoking: npm run build
7
-
8
-
9
- > @microsoft/applicationinsights-react-native@2.4.2-nightly.2111-09 build D:\a\1\s\extensions\applicationinsights-react-native
10
- > npm run build:esm && npm run build:package && npm run dtsgen
11
-
12
-
13
- > @microsoft/applicationinsights-react-native@2.4.2-nightly.2111-09 build:esm D:\a\1\s\extensions\applicationinsights-react-native
14
- > grunt reactnative
15
-
16
- (node:3888) ExperimentalWarning: The fs.promises API is experimental
17
- Running "eslint-ts:reactnative-lint-fix" (eslint-ts) task
18
- grunt-eslint-typescript options: [object Object]{
19
- "format": "codeframe",
20
- "fix": true
21
- }
22
- >> The rootDir specified in your project file [./extensions/applicationinsights-react-native/tsconfig.json] is invalid as it assumes the current working directory.
23
- >> - [extensions/applicationinsights-react-native/src] resolves to [D:\a\1\s\extensions\applicationinsights-react-native\extensions\applicationinsights-react-native\src]
24
- >> - Overridding to use: [D:\a\1\s\extensions\applicationinsights-react-native\src]
25
- >> -- Update or remove to fix this warning
26
- >> The declarationDir specified in your project file [./extensions/applicationinsights-react-native/tsconfig.json] is invalid as it assumes the current working directory.
27
- >> - [extensions/applicationinsights-react-native/types] resolves to [D:\a\1\s\extensions\applicationinsights-react-native\src\extensions\applicationinsights-react-native\types]
28
- >> - Overridding to use: [D:\a\1\s\extensions\applicationinsights-react-native\types]
29
- >> -- Update or remove to fix this warning
30
- Adding files from grunt config... using: D:/a/1/s/extensions/applicationinsights-react-native/src
31
- -----------------------------------------------------------------------------------------------------
32
- - [./extensions/applicationinsights-react-native/src/**/*.ts]
33
- => [D:/a/1/s/extensions/applicationinsights-react-native/src/**/*.ts]
34
- => [src/**/*.ts]
35
- -----------------------------------------------------------------------------------------------------
36
- Creating Temporary TsConfig.json [extensions\applicationinsights-react-native\tsconfig.json-b4750d2d.tmp]:
37
- {
38
- "compilerOptions": {
39
- "sourceMap": true,
40
- "inlineSources": true,
41
- "noImplicitAny": false,
42
- "module": "es6",
43
- "moduleResolution": "Node",
44
- "target": "es5",
45
- "alwaysStrict": true,
46
- "suppressImplicitAnyIndexErrors": true,
47
- "allowSyntheticDefaultImports": true,
48
- "importHelpers": true,
49
- "noEmitHelpers": true,
50
- "forceConsistentCasingInFileNames": true,
51
- "declaration": true,
52
- "declarationDir": "extensions/applicationinsights-react-native/types",
53
- "outDir": "dist-esm",
54
- "rootDir": "extensions/applicationinsights-react-native/src"
55
- },
56
- "include": [
57
- "./src/**/*.ts",
58
- "src/**/*.ts"
59
- ],
60
- "exclude": [
61
- "./node_modules/**"
62
- ]
63
- }
64
- Using tsconfig: extensions\applicationinsights-react-native\tsconfig.json-b4750d2d.tmp
65
- Found eslint-plugin-security -- automatically adding, to avoid this specify a null or empty parser option in your grunt config.
66
- Module Path: D:/a/1/s/node_modules/@nevware21/grunt-eslint-ts
67
- Using ESLint from : D:\a\1\s\node_modules\eslint\lib\api.js via grunt-eslint-ts v0.2.2
68
- Using EsLint Options: [object Object]{
69
- "baseConfig": {
70
- "parserOptions": {
71
- "project": "extensions\\applicationinsights-react-native\\tsconfig.json-b4750d2d.tmp"
72
- },
73
- "plugins": [
74
- "@typescript-eslint",
75
- "security"
76
- ],
77
- "extends": [
78
- "eslint:recommended",
79
- "plugin:@typescript-eslint/recommended",
80
- "plugin:security/recommended"
81
- ],
82
- "parser": "@typescript-eslint/parser",
83
- "rules": {}
84
- },
85
- "fix": true
86
- }
87
- Linting 2 files...
88
- - ./extensions/applicationinsights-react-native/./src/**/*.ts
89
- - ./extensions/applicationinsights-react-native/src/**/*.ts
90
-
91
- 5 Linting Results
92
- No lint fixes identified...
93
-
94
- Running "ts:reactnative" (ts) task
95
- Module Path: D:/a/1/s/node_modules/@nevware21/grunt-ts-plugin
96
- Using tsc version: 4.4.4 via grunt-ts-plugin v0.4.3
97
- >> The rootDir specified in your project file [./extensions/applicationinsights-react-native/tsconfig.json] is invalid as it assumes the current working directory.
98
- >> - [extensions/applicationinsights-react-native/src] resolves to [D:\a\1\s\extensions\applicationinsights-react-native\extensions\applicationinsights-react-native\src]
99
- >> - Overridding to use: [D:\a\1\s\extensions\applicationinsights-react-native\src]
100
- >> -- Update or remove to fix this warning
101
- >> The declarationDir specified in your project file [./extensions/applicationinsights-react-native/tsconfig.json] is invalid as it assumes the current working directory.
102
- >> - [extensions/applicationinsights-react-native/types] resolves to [D:\a\1\s\extensions\applicationinsights-react-native\src\extensions\applicationinsights-react-native\types]
103
- >> - Overridding to use: [D:\a\1\s\extensions\applicationinsights-react-native\types]
104
- >> -- Update or remove to fix this warning
105
- Ts-Plugin...
106
- rootDir from [cwd:D:\a\1\s]
107
- - TSConfig: D:\a\1\s\extensions\applicationinsights-react-native
108
- - Project : <assuming tsconfig location>
109
- - Actual : D:\a\1\s\extensions\applicationinsights-react-native\src
110
- Adding files from grunt config... using: D:/a/1/s/extensions/applicationinsights-react-native/src
111
- -----------------------------------------------------------------------------------------------------
112
- - [./extensions/applicationinsights-react-native/src/**/*.ts]
113
- => [D:/a/1/s/extensions/applicationinsights-react-native/src/**/*.ts]
114
- => [src/**/*.ts]
115
- -----------------------------------------------------------------------------------------------------
116
- Creating Temporary TsConfig.json [extensions\applicationinsights-react-native\tsconfig.json-56d78cf8.tmp]:
117
- {
118
- "compilerOptions": {
119
- "sourceMap": true,
120
- "inlineSources": true,
121
- "noImplicitAny": false,
122
- "module": "es6",
123
- "moduleResolution": "Node",
124
- "target": "es5",
125
- "alwaysStrict": true,
126
- "suppressImplicitAnyIndexErrors": true,
127
- "allowSyntheticDefaultImports": true,
128
- "importHelpers": true,
129
- "noEmitHelpers": true,
130
- "forceConsistentCasingInFileNames": true,
131
- "declaration": true,
132
- "declarationDir": "extensions/applicationinsights-react-native/types",
133
- "outDir": "dist-esm",
134
- "rootDir": "extensions/applicationinsights-react-native/src"
135
- },
136
- "include": [
137
- "./src/**/*.ts",
138
- "src/**/*.ts"
139
- ],
140
- "exclude": [
141
- "./node_modules/**"
142
- ]
143
- }
144
- Ts-Plugin Invoking: D:\a\1\s\node_modules\typescript\bin\tsc @tscommand-8513b746.tmp
145
- Contents...
146
- --declarationDir extensions/applicationinsights-react-native/types
147
- --rootDir extensions/applicationinsights-react-native/src
148
- --project extensions\applicationinsights-react-native\tsconfig.json-56d78cf8.tmp
149
-
150
- TypeScript compiliation completed: 4.24s
151
-
152
- Running "eslint-ts:reactnative-lint" (eslint-ts) task
153
- grunt-eslint-typescript options: [object Object]{
154
- "format": "codeframe"
155
- }
156
- >> The rootDir specified in your project file [./extensions/applicationinsights-react-native/tsconfig.json] is invalid as it assumes the current working directory.
157
- >> - [extensions/applicationinsights-react-native/src] resolves to [D:\a\1\s\extensions\applicationinsights-react-native\extensions\applicationinsights-react-native\src]
158
- >> - Overridding to use: [D:\a\1\s\extensions\applicationinsights-react-native\src]
159
- >> -- Update or remove to fix this warning
160
- >> The declarationDir specified in your project file [./extensions/applicationinsights-react-native/tsconfig.json] is invalid as it assumes the current working directory.
161
- >> - [extensions/applicationinsights-react-native/types] resolves to [D:\a\1\s\extensions\applicationinsights-react-native\src\extensions\applicationinsights-react-native\types]
162
- >> - Overridding to use: [D:\a\1\s\extensions\applicationinsights-react-native\types]
163
- >> -- Update or remove to fix this warning
164
- Adding files from grunt config... using: D:/a/1/s/extensions/applicationinsights-react-native/src
165
- -----------------------------------------------------------------------------------------------------
166
- - [./extensions/applicationinsights-react-native/src/**/*.ts]
167
- => [D:/a/1/s/extensions/applicationinsights-react-native/src/**/*.ts]
168
- => [src/**/*.ts]
169
- -----------------------------------------------------------------------------------------------------
170
- Creating Temporary TsConfig.json [extensions\applicationinsights-react-native\tsconfig.json-e55f0660.tmp]:
171
- {
172
- "compilerOptions": {
173
- "sourceMap": true,
174
- "inlineSources": true,
175
- "noImplicitAny": false,
176
- "module": "es6",
177
- "moduleResolution": "Node",
178
- "target": "es5",
179
- "alwaysStrict": true,
180
- "suppressImplicitAnyIndexErrors": true,
181
- "allowSyntheticDefaultImports": true,
182
- "importHelpers": true,
183
- "noEmitHelpers": true,
184
- "forceConsistentCasingInFileNames": true,
185
- "declaration": true,
186
- "declarationDir": "extensions/applicationinsights-react-native/types",
187
- "outDir": "dist-esm",
188
- "rootDir": "extensions/applicationinsights-react-native/src"
189
- },
190
- "include": [
191
- "./src/**/*.ts",
192
- "src/**/*.ts"
193
- ],
194
- "exclude": [
195
- "./node_modules/**"
196
- ]
197
- }
198
- Using tsconfig: extensions\applicationinsights-react-native\tsconfig.json-e55f0660.tmp
199
- Found eslint-plugin-security -- automatically adding, to avoid this specify a null or empty parser option in your grunt config.
200
- Module Path: D:/a/1/s/node_modules/@nevware21/grunt-eslint-ts
201
- Using ESLint from : D:\a\1\s\node_modules\eslint\lib\api.js via grunt-eslint-ts v0.2.2
202
- Using EsLint Options: [object Object]{
203
- "baseConfig": {
204
- "parserOptions": {
205
- "project": "extensions\\applicationinsights-react-native\\tsconfig.json-e55f0660.tmp"
206
- },
207
- "plugins": [
208
- "@typescript-eslint",
209
- "security"
210
- ],
211
- "extends": [
212
- "eslint:recommended",
213
- "plugin:@typescript-eslint/recommended",
214
- "plugin:security/recommended"
215
- ],
216
- "parser": "@typescript-eslint/parser",
217
- "rules": {}
218
- }
219
- }
220
- Linting 2 files...
221
- - ./extensions/applicationinsights-react-native/./src/**/*.ts
222
- - ./extensions/applicationinsights-react-native/src/**/*.ts
223
-
224
- 5 Linting Results
225
- No lint fixes identified...
226
-
227
- Done.
228
-
229
- > @microsoft/applicationinsights-react-native@2.4.2-nightly.2111-09 build:package D:\a\1\s\extensions\applicationinsights-react-native
230
- > rollup -c
231
-
232
- Loading - ./dist-esm/index.js
233
- Rewriting Map file - ./dist-esm/index.js.map
234
- Loading - ./dist-esm/ReactNativePlugin.js
235
- Prototypes removed...
236
- Line Changed: ReactNativePlugin.prototype.initialize = function (config, // need `| object` to coerce to interface
237
- Detected Removed lines 147 to 162
238
- Replacing [import { __extends } from "tslib";] with [import { __extendsFn as __extends } from "@microsoft/applicationinsights-shims";]
239
- Rewriting Map file - ./dist-esm/ReactNativePlugin.js.map
240
- Loading - ./dist-esm/Interfaces/INativeDevice.js
241
- Rewriting Map file - ./dist-esm/Interfaces/INativeDevice.js.map
242
- Loading - ./dist-esm/Interfaces/index.js
243
- Rewriting Map file - ./dist-esm/Interfaces/index.js.map
244
- Loading - ./dist-esm/Interfaces/IReactNativePluginConfig.js
245
- Rewriting Map file - ./dist-esm/Interfaces/IReactNativePluginConfig.js.map
246
-
247
- dist-esm/index.js → browser/applicationinsights-react-native.min.js...
248
- (!) Missing global variable name
249
- Use output.globals to specify browser global variable names corresponding to external modules
250
- react-native-device-info (guessing 'DeviceInfo')
251
- created browser/applicationinsights-react-native.min.js in 2.4s
252
-
253
- dist-esm/index.js → browser/applicationinsights-react-native.js...
254
- (!) Missing global variable name
255
- Use output.globals to specify browser global variable names corresponding to external modules
256
- react-native-device-info (guessing 'DeviceInfo')
257
- created browser/applicationinsights-react-native.js in 750ms
258
-
259
- dist-esm/index.js → dist/applicationinsights-react-native.min.js...
260
- (!) Missing global variable name
261
- Use output.globals to specify browser global variable names corresponding to external modules
262
- react-native-device-info (guessing 'DeviceInfo')
263
- created dist/applicationinsights-react-native.min.js in 1.8s
264
-
265
- dist-esm/index.js → dist/applicationinsights-react-native.js...
266
- (!) Missing global variable name
267
- Use output.globals to specify browser global variable names corresponding to external modules
268
- react-native-device-info (guessing 'DeviceInfo')
269
- created dist/applicationinsights-react-native.js in 692ms
270
-
271
- > @microsoft/applicationinsights-react-native@2.4.2-nightly.2111-09 dtsgen D:\a\1\s\extensions\applicationinsights-react-native
272
- > api-extractor run --local && node ../../scripts/dtsgen.js "Microsoft Application Insights react native plugin"
273
-
274
-
275
- api-extractor 7.18.19 - https://api-extractor.com/
276
-
277
- Using configuration from ./api-extractor.json
278
- Analysis will use the bundled TypeScript version 4.4.4
279
- Warning: The API report file was missing, so a new file was created. Please add this file to Git:
280
- D:\a\1\s\extensions\applicationinsights-react-native\dist\applicationinsights-react-native.api.md
281
-
282
- API Extractor completed successfully
283
- Using Package: D:\a\1\s\extensions\applicationinsights-react-native\package.json, current path cwd D:\a\1\s\extensions\applicationinsights-react-native
284
- Transforming: D:\a\1\s\extensions\applicationinsights-react-native\dist\applicationinsights-react-native.d.ts
285
- File...
286
- Lines: 44