avocadowastaken/rapidbundle

View on GitHub
examples/module/__snapshots__/integration.test.ts.snap

Summary

Maintainability
Test Coverage
// Vitest Snapshot v1

exports[`module > dist 1`] = `
[
  "index.js",
]
`;

exports[`module > dist/index.js 1`] = `
// src/hello.ts
function hello(name) {
  return \`Hello, \${name}\`;
}
export {
  hello
};

`;

exports[`module > logs 1`] = `
✔ Resolving build manifests
  ─ ℹ Checking 'action.yml'
  ─ ℹ Checking 'package.json'
  ✔ Run preparations
  ─ ℹ Removing 'dist' directory
  ✔ Making bundle from 'package.json'
  › ✔ Parsing 'package.json'
  › ✔ Making '.module' entry bundle
    ─ ℹ Setting entry point: src/index.ts
    ─ ℹ Setting output file: dist/index.js
    ─ ℹ Setting build target: chrome<version>, edge<version>, firefox<version>, ios<version>, safari<version>
------
Exit Code: 0
`;