* chore: create tests * chore: models * fix: passing initial tests * test: adds integration test * test: clean up integration implementation * fix: claims * fix: brightpearl + webshipper * tests: passing * fix: update claim items * fix: adds gitignore * fix: pr comments * fix: single migration * fix(medusa-plugin-segment): adds item claimed event to segment
14 lines
293 B
JavaScript
14 lines
293 B
JavaScript
let ignore = [`**/dist`];
|
|
|
|
// Jest needs to compile this code, but generally we don't want this copied
|
|
// to output folders
|
|
if (process.env.NODE_ENV !== `test`) {
|
|
ignore.push(`**/__tests__`);
|
|
}
|
|
|
|
module.exports = {
|
|
sourceMaps: true,
|
|
presets: ["babel-preset-medusa-package"],
|
|
ignore,
|
|
};
|