diff --git a/helpers/build-app-list.js b/helpers/build-app-list.js index 3891787..d7376cb 100644 --- a/helpers/build-app-list.js +++ b/helpers/build-app-list.js @@ -4,19 +4,13 @@ import MarkdownIt from 'markdown-it' import slugify from 'slugify' import axios from 'axios' +import statuses from './statuses' import parseGithubDate from './parse-github-date' const md = new MarkdownIt() -export const statuses = { - '✅': 'native', - '✳️': 'rosetta', - '⏹': 'no-in-progress', - '🚫': 'no' -} - const getTokenLinks = function ( childTokens ) { diff --git a/helpers/statuses.js b/helpers/statuses.js new file mode 100644 index 0000000..4fe284b --- /dev/null +++ b/helpers/statuses.js @@ -0,0 +1,6 @@ +export default { + '✅': 'native', + '✳️': 'rosetta', + '⏹': 'no-in-progress', + '🚫': 'no' +}