Skip to content
Commits on Source (2)
/test/
/docs/
.*
[
{
"get": "/dummy.css",
"push": [
{
"priority": 256,
"glob": [
"/high_priority.css"
]
},
{
"priority": 128,
"glob": [
"/high_priority.woff2"
]
},
{
"priority": 1,
"glob": [
"/medium_priority.svg"
]
}
]
}
]
\ No newline at end of file
......@@ -4,7 +4,7 @@
"author": "Sebastiaan Deckers <sebdeckers83@gmail.com>",
"repository": "gitlab:commonshost/manifest",
"license": "ISC",
"version": "2.2.0",
"version": "2.2.1",
"main": "src/manifest.js",
"bin": {
"manifest": "./src/cli.js"
......
const {translate} = require('./src/capabilities/translate')
const manifest = require('./manifest.json')
async function main () {
const translated = await translate(manifest, 'apache')
console.log(translated)
}
main()