`The project is being packaged without validation....
# sdf
d
The project is being packaged without validation. Make sure the project is validated.
<-- is there a 'validate' switch I'm missing on the project:package command?
d
I have not done this command myself, but seems like that warning is just given regardless: https://github.com/oracle/netsuite-suitecloud-sdk/blob/020a54d0aa29765845828596686[…]packages/node-cli/src/commands/project/package/PackageAction.js you could try the Java CLI as well, idk if result would be different
a
We decoupled the validation from packaging. You can run local validate or server side validate, when you are satisfied you can package the project.
d
Ok @Ali Syed (NS DevTools QA), I do validate ... and that message still shows up
a
This will show up. Its just a warning for you that packaging is not doing any validation as it was doing in previous versions. When running package command. It will package irrespective if the project is missing something or not. That's why you have to validate before packaging, its your responsibility to make sure project is fine.
We removed the validation process in this version because many users requested this. Local validation was giving false positives. So it's upto the user to do whichever validation they want before hand. Fix errors if any and then just run package command. Which is just zipping the project according to your manifes xml.
e
I get it, thanks @Ali Syed (NS DevTools QA). Yes, I was one of the users that ran into that issue. Cheers!