Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

regression: yarn webpack reports Critical dependency: the request of a dependency is an expression #748

Closed
ssbarnea opened this issue Jan 3, 2023 · 9 comments · Fixed by #751
Assignees
Labels
bug Something isn't working

Comments

@ssbarnea
Copy link
Member

ssbarnea commented Jan 3, 2023

Introduction of telemetry introduce a regression on webpack where we can see this WARNING, which sounds more serious than a warning based on the "Critical dependency" part of it:

C:\Users\sorin\c\vscode-ansible>yarn run webpack
30 assets
533 modules

WARNING in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-38
Critical dependency: the request of a dependency is an expression
    at CommonJsRequireContextDependency.getWarnings (C:\Users\sorin\c\vscode-ansible\node_modules\webpack\lib\dependencies\ContextDependency.js:102:18)
    at Compilation.reportDependencyErrorsAndWarnings (C:\Users\sorin\c\vscode-ansible\node_modules\webpack\lib\Compilation.js:3132:24)
    at C:\Users\sorin\c\vscode-ansible\node_modules\webpack\lib\Compilation.js:2729:28
    at _next2 (eval at create (C:\Users\sorin\c\vscode-ansible\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:34:1)
    at eval (eval at create (C:\Users\sorin\c\vscode-ansible\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:62:1)
    at C:\Users\sorin\c\vscode-ansible\node_modules\webpack\lib\FlagDependencyExportsPlugin.js:385:11
    at C:\Users\sorin\c\vscode-ansible\node_modules\neo-async\async.js:2830:7
    at Object.each (C:\Users\sorin\c\vscode-ansible\node_modules\neo-async\async.js:2850:39)
    at C:\Users\sorin\c\vscode-ansible\node_modules\webpack\lib\FlagDependencyExportsPlugin.js:361:18
    at C:\Users\sorin\c\vscode-ansible\node_modules\neo-async\async.js:2830:7
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

webpack 5.75.0 compiled with 1 warning in 12826 ms

This will be produced on any platform and I have no clue what is effectively causing it but it can easily be seen that it is related to @redhat-developer/vscode-redhat-telemetry.

@ssbarnea
Copy link
Member Author

ssbarnea commented Jan 3, 2023

@ganeshrn Once you fix that, I will add another change that makes webpack warnings be treated as errors, so we don't introduce more regressions accidentally. It seems that https://stackoverflow.com/questions/60092487/with-webpack-is-it-possible-to-force-warnings-to-be-treated-as-errors should help me do that.

Maybe @fbricon could help on this issue as he is the brain behind telemetry extension.

@ssbarnea ssbarnea added the bug Something isn't working label Jan 3, 2023
@fbricon
Copy link

fbricon commented Jan 4, 2023

So, vscode-xml already webpacks vscode-redhat-telemetry and works fine. I checked the same warning is produced.
My guess is this is caused by this expression: https://github.com/redhat-developer/vscode-redhat-telemetry/blob/main/src/services/configurationManager.ts#L93

I'm not a JS expert, but I think it's fine. Dunno if there's a way to tell webpack to SFTU about certain statements.
Now if you know a clever way to rewrite the same thing differently, lemme know.

@ssbarnea
Copy link
Member Author

ssbarnea commented Jan 4, 2023

That part is clearly going to help us find a solution for it. What is bit weird is that I did not see any warning while compiling the telemetry package locally. Maybe we could add a script that does use webpack on it just to test for this? I am not sure if that warning is really a reason to concern but if we can address it, it would be better.

@fbricon
Copy link

fbricon commented Jan 4, 2023

vscode-redhat-telemetry isn't webpacked. Some bits depend on nodejs, some others on DOM. Im not sure webpacking it won't cause issues down the line, but again not a JS expert.

Anyways, https://github.com/redhat-developer/vscode-redhat-telemetry/pull/23/files#diff-3dbf6e739072174d75c3247910cbd0ac5f8972a7b0cea0ac00336526b474eaf5R93 should fix the current issue.

Please try @redhat-developer/vscode-redhat-telemetry 0.5.3

@ssbarnea
Copy link
Member Author

ssbarnea commented Jan 4, 2023

For reference the issue seems to be caused by webpack/webpack#13865

@ssbarnea
Copy link
Member Author

ssbarnea commented Jan 4, 2023

Well, upgrading to 0.5.3 produced compilation errors, lots, but i am trying to investigate why...

ask: [build] npx tsc -p ./
30 assets
564 modules

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/AnalyticsEvent.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"AnalyticsEvent.d.ts","sourceRoot":"","sources":["../../src/services/AnalyticsEvent.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,cAAc;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,OAAO,CAAC,EAAE,GAAG,CAAC;CACjB"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./AnalyticsEvent.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/AnalyticsEvent.d.ts 1:7
Module parse failed: Unexpected token (1:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> export interface AnalyticsEvent {
|     userId: string;
|     event: string;
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./AnalyticsEvent.d.ts ./AnalyticsEvent.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/AnalyticsEvent.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"AnalyticsEvent.js","sourceRoot":"","sources":["../../src/services/AnalyticsEvent.ts"],"names":[],"mappings":""}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./AnalyticsEvent.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/FileSystemStorageService.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"FileSystemStorageService.d.ts","sourceRoot":"","sources":["../../src/services/FileSystemStorageService.ts"],"names":[],"mappings":"AAGA,qBAAa,wBAAwB;IAEjC,OAAO,CAAC,WAAW,CAAS;gBAEhB,WAAW,EAAE,MAAM;IAOxB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAiB3D,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;CAY1E"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./FileSystemStorageService.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/FileSystemStorageService.d.ts 1:7
Module parse failed: Unexpected token (1:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> export declare class FileSystemStorageService {
|     private storagePath;
|     constructor(storagePath: string);
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./FileSystemStorageService.d.ts ./FileSystemStorageService.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/FileSystemStorageService.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"FileSystemStorageService.js","sourceRoot":"","sources":["../../src/services/FileSystemStorageService.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uCAAyB;AACzB,gDAAwB;AAExB,MAAa,wBAAwB;IAIjC,YAAY,WAAmB;QAC3B,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,WAAW,CAAC,EAAE;YAC7B,EAAE,CAAC,SAAS,CAAC,WAAW,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;SAClD;IACL,CAAC;IAEM,YAAY,CAAC,QAAgB;QAChC,MAAM,QAAQ,GAAG,cAAI,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;QAC1D,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACnC,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;gBAC1B,OAAO,CAAC,SAAS,CAAC,CAAC;gBACnB,OAAO;aACV;YACD,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE;gBACxC,IAAI,GAAG,EAAE;oBACL,OAAO,CAAC,SAAS,CAAC,CAAC;oBACnB,OAAO;iBACV;gBACD,OAAO,CAAC,IAAI,CAAC,CAAC;YAClB,CAAC,CAAC,CAAC;QACP,CAAC,CAAC,CAAC;IACP,CAAC;IAEM,WAAW,CAAC,QAAgB,EAAE,OAAe;QAChD,MAAM,QAAQ,GAAG,cAAI,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;QAC1D,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,OAAO,EAAE,EAAE;YACpC,EAAE,CAAC,SAAS,CAAC,QAAQ,EAAE,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE;gBACpC,IAAI,GAAG,EAAE;oBACL,OAAO,CAAC,KAAK,CAAC,CAAC;iBAClB;gBACD,OAAO,CAAC,IAAI,CAAC,CAAC;YAClB,CAAC,CAAC,CAAC;QACP,CAAC,CAAC,CAAC;IACP,CAAC;CAEJ;AAxCD,4DAwCC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./FileSystemStorageService.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configuration.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"configuration.d.ts","sourceRoot":"","sources":["../../src/services/configuration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,UAAU,gBAAgB;IACtB,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,UAAU,eAAe;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,aAAK,YAAY,GAAG,gBAAgB,GAAG,eAAe,CAAC;AAEvD,qBAAa,aAAa;IAEtB,IAAI,EAAE,GAAG,CAAC;gBAEE,IAAI,EAAE,GAAG;IAId,SAAS,IAAI,OAAO;IAIpB,OAAO,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO;IAoB9C,UAAU,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO;IAQ1C,UAAU,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO;IAQ1C,kBAAkB,IAAI,YAAY,EAAE;IAOpC,kBAAkB,IAAI,YAAY,EAAE;IAOpC,QAAQ,IAAI,MAAM;CAYrB"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./configuration.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configuration.d.ts 2:0
Module parse failed: The keyword 'interface' is reserved (2:0)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import { AnalyticsEvent } from "./AnalyticsEvent";
> interface EventNamePattern {
|     name: string;
| }
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./configuration.d.ts ./configuration.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configuration.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../../src/services/configuration.ts"],"names":[],"mappings":"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"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./configuration.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"configurationManager.d.ts","sourceRoot":"","sources":["../../src/services/configurationManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAGhD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAEtE,eAAO,MAAM,kBAAkB,qHAAsH,CAAC;AACtJ,eAAO,MAAM,gBAAgB,0BAA0B,CAAC;AAExD,qBAAa,oBAAoB;IAIjB,OAAO,CAAC,WAAW;IAAU,OAAO,CAAC,cAAc;IAH/D,OAAc,iBAAiB,SAAwC;IACvE,OAAc,mBAAmB,SAA2C;gBAExD,WAAW,EAAE,MAAM,EAAU,cAAc,EAAE,wBAAwB;IAEzF,OAAO,CAAC,eAAe,CAAmC;IAE7C,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IASxB,yBAAyB,IAAI,OAAO,CAAC,aAAa,CAAC;YAalD,iBAAiB;IAmBzB,sBAAsB,CAAC,UAAU,EAAE,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC;IASlD,wBAAwB,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;IAepD,qBAAqB,IAAI,OAAO,CAAC,GAAG,GAAC,SAAS,CAAC;IAQ/C,wBAAwB,IAAI,OAAO,CAAC,GAAG,CAAC;CAMxD"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./configurationManager.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.d.ts 3:7
Module parse failed: Unexpected token (3:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import { Configuration } from "./configuration";
| import { FileSystemStorageService } from "./FileSystemStorageService";
> export declare const DEFAULT_CONFIG_URL = "https://raw.githubusercontent.com/redhat-developer/vscode-redhat-telemetry/main/src/config/telemetry-config.json";
| export declare const TELEMETRY_CONFIG = "telemetry-config.json";
| export declare class ConfigurationManager {
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./configurationManager.d.ts ./configurationManager.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"configurationManager.js","sourceRoot":"","sources":["../../src/services/configurationManager.ts"],"names":[],"mappings":"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"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./configurationManager.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/fileSystemCacheService.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"fileSystemCacheService.d.ts","sourceRoot":"","sources":["../../src/services/fileSystemCacheService.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAEtE,qBAAa,sBAAuB,SAAQ,wBAAyB,YAAW,YAAY;IAExF,OAAO,CAAC,QAAQ,CAA6B;gBAEjC,WAAW,EAAE,MAAM;IAIzB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAW7C,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;CAM1D"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./fileSystemCacheService.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/fileSystemCacheService.d.ts 3:7
Module parse failed: Unexpected token (3:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import { CacheService } from "../interfaces/cacheService";
| import { FileSystemStorageService } from "./FileSystemStorageService";
> export declare class FileSystemCacheService extends FileSystemStorageService implements CacheService {
|     private memCache;
|     constructor(storagePath: string);
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./fileSystemCacheService.d.ts ./fileSystemCacheService.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/fileSystemCacheService.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"fileSystemCacheService.js","sourceRoot":"","sources":["../../src/services/fileSystemCacheService.ts"],"names":[],"mappings":";;;;;;;;;;;;AACA,yEAAsE;AAEtE,MAAa,sBAAuB,SAAQ,mDAAwB;IAIhE,YAAY,WAAmB;QAC3B,KAAK,CAAC,WAAW,CAAC,CAAC;QAHf,aAAQ,GAAG,IAAI,GAAG,EAAkB,CAAC;IAI7C,CAAC;IAEK,GAAG,CAAC,GAAW;;YACjB,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;gBACxB,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;aAClD;YACD,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,YAAY,CAAC,GAAG,GAAG,MAAM,CAAC,CAAC;YACpD,IAAI,KAAK,EAAE;gBACP,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;aACjC;YACD,OAAO,KAAK,CAAC;QACjB,CAAC;KAAA;IAEK,GAAG,CAAC,GAAW,EAAE,KAAa;;YAChC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;YAC9B,MAAM,IAAI,CAAC,WAAW,CAAC,GAAG,GAAG,MAAM,EAAE,KAAK,CAAC,CAAC;YAC5C,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;CAEJ;AAzBD,wDAyBC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./fileSystemCacheService.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/fileSystemIdManager.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"fileSystemIdManager.d.ts","sourceRoot":"","sources":["../../src/services/fileSystemIdManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAGpD;;GAEG;AACH,qBAAa,mBAAoB,YAAW,SAAS;IAC3C,aAAa,IAAI,OAAO,CAAC,MAAM,CAAC;CAGzC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./fileSystemIdManager.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/fileSystemIdManager.d.ts 5:7
Module parse failed: Unexpected token (5:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
|  * Service providing the Red Hat anonymous user id, read/stored from the `~/.redhat/anonymousId` file.
|  */
> export declare class FileSystemIdManager implements IdManager {
|     getRedHatUUID(): Promise<string>;
| }
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./fileSystemIdManager.d.ts ./fileSystemIdManager.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/fileSystemIdManager.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"fileSystemIdManager.js","sourceRoot":"","sources":["../../src/services/fileSystemIdManager.ts"],"names":[],"mappings":";;;;;;;;;;;;AACA,wCAAqC;AAErC;;GAEG;AACH,MAAa,mBAAmB;IACtB,aAAa;;YACf,OAAO,WAAI,CAAC,aAAa,EAAE,CAAC;QAChC,CAAC;KAAA;CACJ;AAJD,kDAIC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./fileSystemIdManager.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/idManagerFactory.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"idManagerFactory.d.ts","sourceRoot":"","sources":["../../src/services/idManagerFactory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAKpD,yBAAiB,gBAAgB,CAAC;IAE9B,SAAgB,YAAY,IAAI,SAAS,CAOxC;CAEJ"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./idManagerFactory.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/idManagerFactory.d.ts 2:7
Module parse failed: Unexpected token (2:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import { IdManager } from '../interfaces/idManager';
> export declare namespace IdManagerFactory {
|     function getIdManager(): IdManager;
| }
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./idManagerFactory.d.ts ./idManagerFactory.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/idManagerFactory.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"idManagerFactory.js","sourceRoot":"","sources":["../../src/services/idManagerFactory.ts"],"names":[],"mappings":";;;AACA,sDAAmD;AACnD,+DAA4D;AAC5D,+DAA4D;AAE5D,IAAiB,gBAAgB,CAWhC;AAXD,WAAiB,gBAAgB;IAE7B,SAAgB,YAAY;QACxB,IAAI,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,EAAE;YACjC,OAAO,IAAI,2BAAY,EAAE,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,GAAG,CAAC,uBAAuB,CAAC,EAAE;YAC7C,OAAO,IAAI,iCAAe,EAAE,CAAC;SAChC;QACD,OAAO,IAAI,yCAAmB,EAAE,CAAC;IACrC,CAAC;IAPe,6BAAY,eAO3B,CAAA;AAEL,CAAC,EAXgB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAWhC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./idManagerFactory.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/reporter.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"reporter.d.ts","sourceRoot":"","sources":["../../src/services/reporter.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,gBAAgB,CAAC;AAEvC,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD;;GAEG;AACH,qBAAa,QAAQ;IAEP,OAAO,CAAC,SAAS,CAAC;IAAa,OAAO,CAAC,YAAY,CAAC;gBAA5C,SAAS,CAAC,uBAAW,EAAU,YAAY,CAAC,0BAAc;IAGjE,MAAM,CAAC,KAAK,EAAE,cAAc,EAAE,IAAI,GAAE,MAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;IAiCpE,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAGpC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./reporter.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/reporter.d.ts 7:7
Module parse failed: Unexpected token (7:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
|  * Sends Telemetry events to a segment.io backend
|  */
> export declare class Reporter {
|     private analytics?;
|     private cacheService?;
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./reporter.d.ts ./reporter.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/reporter.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"reporter.js","sourceRoot":"","sources":["../../src/services/reporter.ts"],"names":[],"mappings":";;;;;;;;;;;;AACA,6CAAmC;AAEnC,4CAAyC;AAGzC;;GAEG;AACH,MAAa,QAAQ;IAEnB,YAAoB,SAAqB,EAAU,YAA2B;QAA1D,cAAS,GAAT,SAAS,CAAY;QAAU,iBAAY,GAAZ,YAAY,CAAe;IAC9E,CAAC;IAEY,MAAM,CAAC,KAAqB,EAAE,OAAe,OAAO;;;YAC/D,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;gBACnB,OAAO;aACR;YACD,MAAM,aAAa,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC5C,QAAQ,IAAI,EAAE;gBACZ,KAAK,UAAU;oBACb,wEAAwE;oBACxE,MAAM,IAAI,GAAG,IAAA,kBAAI,EAAC,aAAa,CAAC,CAAC;oBACjC,MAAM,MAAM,GAAG,MAAM,CAAA,MAAA,IAAI,CAAC,YAAY,0CAAE,GAAG,CAAC,UAAU,CAAC,CAAA,CAAC;oBACxD,IAAI,IAAI,KAAK,MAAM,EAAE;wBACnB,eAAM,CAAC,GAAG,CAAC,6CAA6C,aAAa,EAAE,CAAC,CAAC;wBACzE,OAAO;qBACR;oBACD,eAAM,CAAC,GAAG,CAAC,kCAAkC,aAAa,EAAE,CAAC,CAAC;oBAC9D,MAAA,IAAI,CAAC,SAAS,0CAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;oBAChC,MAAA,IAAI,CAAC,YAAY,0CAAE,GAAG,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;oBACzC,MAAM;gBACR,KAAK,OAAO;oBACV,eAAM,CAAC,GAAG,CAAC,+BAA+B,aAAa,EAAE,CAAC,CAAC;oBAC3D,MAAA,IAAI,CAAC,SAAS,0CAAE,KAAK,CAAC,KAAK,CAAC,CAAC;oBAC7B,MAAM;gBACR,KAAK,MAAM;oBACT,eAAM,CAAC,GAAG,CAAC,8BAA8B,aAAa,EAAE,CAAC,CAAC;oBAC1D,MAAA,IAAI,CAAC,SAAS,0CAAE,IAAI,CAAC,KAAK,CAAC,CAAC;oBAC5B,MAAM;gBACR;oBACE,eAAM,CAAC,GAAG,CAAC,gCAAgC,IAAI,iBAAiB,aAAa,EAAE,CAAC,CAAC;oBACjF,MAAM;aACT;;KAEF;IAEY,KAAK;;;YAChB,MAAA,IAAI,CAAC,SAAS,0CAAE,KAAK,EAAE,CAAC;;KACzB;CACF;AAzCD,4BAyCC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./reporter.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/telemetryServiceBuilder.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"telemetryServiceBuilder.d.ts","sourceRoot":"","sources":["../../src/services/telemetryServiceBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAEpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAG3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAI3D,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;GAEG;AACH,qBAAa,uBAAuB;IAChC,OAAO,CAAC,WAAW,CAAM;IACzB,OAAO,CAAC,QAAQ,CAAC,CAAoB;IACrC,OAAO,CAAC,SAAS,CAAC,CAAY;IAC9B,OAAO,CAAC,WAAW,CAAC,CAAc;IAClC,OAAO,CAAC,YAAY,CAAC,CAAe;IACpC,OAAO,CAAC,oBAAoB,CAAC,CAAuB;gBAExC,WAAW,CAAC,EAAC,GAAG;IAIrB,cAAc,CAAC,WAAW,EAAE,GAAG,GAAG,uBAAuB;IAKzD,WAAW,CAAC,QAAQ,EAAE,iBAAiB,GAAG,uBAAuB;IAKjE,YAAY,CAAC,SAAS,EAAE,SAAS,GAAG,uBAAuB;IAK3D,cAAc,CAAC,WAAW,EAAE,WAAW,GAAG,uBAAuB;IAKjE,uBAAuB,CAAC,aAAa,EAAE,oBAAoB,GAAG,uBAAuB;IAKrF,eAAe,CAAC,YAAY,EAAE,YAAY,GAAG,uBAAuB;IAK9D,KAAK,IAAI,OAAO,CAAC,gBAAgB,CAAC;IA6B/C,OAAO,CAAC,QAAQ;CAQnB"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./telemetryServiceBuilder.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/telemetryServiceBuilder.d.ts 10:7
Module parse failed: Unexpected token (10:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
|  * `TelemetryService` builder
|  */
> export declare class TelemetryServiceBuilder {
|     private packageJson;
|     private settings?;
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./telemetryServiceBuilder.d.ts ./telemetryServiceBuilder.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/telemetryServiceBuilder.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"telemetryServiceBuilder.js","sourceRoot":"","sources":["../../src/services/telemetryServiceBuilder.ts"],"names":[],"mappings":";;;;;;;;;;;;AAEA,yCAAsC;AAEtC,iEAA8D;AAC9D,sEAAmE;AAEnE,oEAAiE;AACjE,+DAA4D;AAC5D,oDAAqD;AAIrD;;GAEG;AACH,MAAa,uBAAuB;IAQhC,YAAY,WAAgB;QAC1B,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;IACjC,CAAC;IAEM,cAAc,CAAC,WAAgB;QAClC,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,WAAW,CAAC,QAA2B;QAC1C,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,YAAY,CAAC,SAAoB;QACpC,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,cAAc,CAAC,WAAwB;QAC1C,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,uBAAuB,CAAC,aAAmC;QAC9D,IAAI,CAAC,oBAAoB,GAAG,aAAa,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,eAAe,CAAC,YAA0B;QAC7C,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,OAAO,IAAI,CAAC;IAChB,CAAC;IAEY,KAAK;;YACd,IAAI,CAAC,QAAQ,EAAE,CAAC;YAChB,MAAM,SAAS,GAAG,uCAAkB,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;YAClE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;gBACjB,IAAI,CAAC,SAAS,GAAG,IAAI,yCAAmB,EAAE,CAAC;aAC9C;YACD,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;gBACnB,IAAI,CAAC,WAAW,GAAG;oBACf,SAAS,EAAE;wBACP,IAAI,EAAE,IAAA,2BAAc,EAAC,IAAI,CAAC,WAAW,CAAC;wBACtC,OAAO,EAAE,IAAI,CAAC,WAAW,CAAC,OAAO;qBACpC;oBACD,WAAW,EAAE;wBACT,IAAI,EAAE,SAAS;wBACf,OAAO,EAAE,GAAG;qBACf;oBACD,QAAQ,EAAC;wBACL,IAAI,EAAC,SAAS;wBACd,OAAO,EAAC,GAAG;qBACd;iBACJ,CAAC;aACL;YACD,MAAM,QAAQ,GAAG,IAAI,mBAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;YAC5D,MAAM,KAAK,GAAG,IAAI,CAAC,QAAS,CAAC,qBAAqB,EAAE;gBAClD,CAAC,CAAC,SAAS;gBACX,CAAC,CAAC,IAAI,yCAAmB,EAAE,CAAC;YAC9B,OAAO,IAAI,2CAAoB,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,CAAC,QAAS,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAY,EAAE,IAAI,CAAC,oBAAoB,CAAC,CAAC;QACnI,CAAC;KAAA;IAEO,QAAQ;QACZ,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;YACnB,MAAM,IAAI,KAAK,CAAC,wBAAwB,CAAC,CAAC;SAC7C;QACD,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;YACnB,MAAM,IAAI,KAAK,CAAC,wBAAwB,CAAC,CAAC;SAC7C;IACL,CAAC;CACJ;AA/ED,0DA+EC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./telemetryServiceBuilder.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/telemetryServiceImpl.d.ts.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"telemetryServiceImpl.d.ts","sourceRoot":"","sources":["../../src/services/telemetryServiceImpl.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAE3E,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAGxD;;GAEG;AACH,qBAAa,oBAAqB,YAAW,gBAAgB;IAG/C,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,oBAAoB,CAAC;IAPzC,OAAO,CAAC,SAAS,CAAS;gBAEN,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,mBAAmB,GAAG,SAAS,EACtC,QAAQ,EAAE,iBAAiB,EAC3B,SAAS,EAAE,SAAS,EACpB,WAAW,EAAE,WAAW,EACxB,oBAAoB,CAAC,kCAAsB;IAQlD,IAAI,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAa1C,gBAAgB,IAAI,OAAO,CAAC,IAAI,CAAC;IAIjC,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;YAOjC,SAAS;IAwBV,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAc3B,OAAO;IAMpB,OAAO,CAAC,uBAAuB;CAIhC"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./telemetryServiceImpl.d.ts.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/telemetryServiceImpl.d.ts 11:7
Module parse failed: Unexpected token (11:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
|  * Implementation of a `TelemetryService`
|  */
> export declare class TelemetryServiceImpl implements TelemetryService {
|     private reporter;
|     private queue;
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./telemetryServiceImpl.d.ts ./telemetryServiceImpl.d
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

ERROR in ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/telemetryServiceImpl.js.map 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> {"version":3,"file":"telemetryServiceImpl.js","sourceRoot":"","sources":["../../src/services/telemetryServiceImpl.ts"],"names":[],"mappings":"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"}
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/ sync ^.*$ ./telemetryServiceImpl.js.map
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/services/configurationManager.js 114:19-43
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/vscode/redhatService.js 40:31-74
 @ ./node_modules/@redhat-developer/vscode-redhat-telemetry/lib/index.js 4:24-57
 @ ./src/utils/telemetryUtils.ts 27:14-70
 @ ./src/extension.ts 32:25-58

webpack 5.75.0 compiled with 30 errors in 5702 ms
task: Failed to run task "package": exit status 1
task package  31.16s user 5.18s system 231% cpu 15.713 total
FAIL: 1

@fbricon
Copy link

fbricon commented Jan 4, 2023

yeah I'm seeing this too. FFS

@ssbarnea
Copy link
Member Author

ssbarnea commented Jan 4, 2023

At least I am glad I am not the only one affected. It is quite confusing. I looked at the code and I was hoping we might have a way to bypass the loading of the default config but apparently that is not possible. I wonder if we should not better avoid using a variable and instead go for a static string. In the end webpack is expected to just load that data at compile time, so there is nothing dynamic about that. If anyone needs custom config, they can load it after, but the default should be static.

@fbricon
Copy link

fbricon commented Jan 4, 2023

try 0.5.4 now

ssbarnea added a commit that referenced this issue Jan 4, 2023
This should prevent accidental regression related to use of webpack.

Related: #748
ssbarnea added a commit that referenced this issue Jan 4, 2023
This should prevent accidental regression related to use of webpack.

Related: #748
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants