Do not check in generated samples file

This commit is contained in:
Alex Dima 2021-11-17 16:30:11 +01:00
parent 91c9c0cec3
commit bbaa2d846d
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
4 changed files with 2 additions and 342 deletions

View file

@ -51,7 +51,7 @@ function generateTestSamplesTask() {
'//This is a generated file via `npm run simpleserver`\ndefine([], function() { return';
const suffix = '; });';
fs.writeFileSync(
path.join(REPO_ROOT, 'test/manual/samples-all.generated.js'),
path.join(REPO_ROOT, 'test/manual/generated/all-samples.js'),
prefix + JSON.stringify(samples, null, '\t') + suffix
);