You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that when you try to run the package as-is, on a recent version of node, there a few NODE_OPTIONS flags need to be set.
By changing these lines in package.json, i was able to build it:
"test-ci": "NODE_OPTIONS=--openssl-legacy-provider ng test ngx-tableau --code-coverage --no-watch --browsers HeadlessChrome",
and
"build-tableau": "NODE_OPTIONS=--no-experimental-fetch ng build --prod ngx-tableau",
By setting these options, you revert some deprecations between node v16 and v18, although updating a bunch of dependencies is probably the best way forward.
The text was updated successfully, but these errors were encountered:
I'm aware that the dependencies need to be updated, and the dependabot will agree with me...
I'm afraid I don't have a lot of time to maintain these Open Source projects but feel free to make a Pull Request with the updated dependencies, and I will review them and create a new major release.
I noticed that when you try to run the package as-is, on a recent version of node, there a few NODE_OPTIONS flags need to be set.
By changing these lines in package.json, i was able to build it:
"test-ci": "NODE_OPTIONS=--openssl-legacy-provider ng test ngx-tableau --code-coverage --no-watch --browsers HeadlessChrome",
and
"build-tableau": "NODE_OPTIONS=--no-experimental-fetch ng build --prod ngx-tableau",
By setting these options, you revert some deprecations between node v16 and v18, although updating a bunch of dependencies is probably the best way forward.
The text was updated successfully, but these errors were encountered: