This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "@babylon/tscopy", | |
"version": "0.0.0", | |
"bin": { | |
"tscopy": "./src/tscopy.js" | |
}, | |
"dependencies": { | |
"cpy": "^8.0.0" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
function verifyService { | |
local service=$1 | |
if [ ! -f "services/$service/shipcat.yml" ]; then | |
echo "No such service $service" | |
exit 1 | |
fi | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
if(!window.DocumentFragment && window.HTMLDocument) { | |
window.DocumentFragment = HTMLDocument; | |
} | |
if(!document.ELEMENT_NODE) { | |
document.ELEMENT_NODE = 1; | |
document.ATTRIBUTE_NODE = 2; | |
document.TEXT_NODE = 3; |