debian-mirror-gitlab/spec/frontend/__helpers__/graphql_transformer.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
201 B
JavaScript
Raw Normal View History

2022-11-25 23:54:43 +05:30
/* eslint-disable import/no-commonjs */
const loader = require('graphql-tag/loader');
module.exports = {
process(src) {
2023-03-04 22:38:38 +05:30
return {
code: loader.call({ cacheable() {} }, src),
};
2022-11-25 23:54:43 +05:30
},
};