-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
fix(nuxt): Add module to build:transpile script #12843
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
Conversation
What is working: | ||
|
||
- Error Reporting | ||
|
||
What is partly working: | ||
|
||
- Tracing by setting `tracesSampleRate` | ||
|
||
What is not yet(!) included: | ||
|
||
- Source Maps | ||
- Connected Traces |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will add a more detailed description later. Just wanted to fix the module
folder output right now and add some basic information along the way.
@@ -84,10 +84,12 @@ | |||
"build:transpile": { | |||
"dependsOn": [ | |||
"^build:transpile", | |||
"^build:types" | |||
"^build:types", | |||
"build:types" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Transpilation usually shouldn't depend on the same packages types. Is there a reason you added this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is because I am building the module with nuxt-module-build
and this already relies on the types. I am getting the build warning Potential missing package.json files: build/types/index.types.d.ts
if there are no types yet.
Adds the
module
folder to the build output when building packages in root-level.