1.0.7 • Published 9 years ago
inject-files-cli v1.0.7
inject-files-cli
usage
global
$ npm install inject-files-cli --global
$ inject-files-cli source/index.html build/index.htmlas a dev-dependency
install
$ npm install inject-files-cli --save-devin package.json
{
...
"scripts": {
"inject": "inject-files-cli source/index.html build/index.html"
},
...
}run the npm-script
$ npm run injectCLI
inject-files-cli input output timer;
input
Type: string
name of input file, including relative-path and extension
output
Type: string
name of output file, including relative-path and extension
timer
Type: boolean
log the time (ms) taken to inject files
insert markers
Just insert a <<marker>> in your code
in your HTML
<head>
<title>example</title>
<style>
<<styles/style.css>>
</style>
</head>
<body>
<p>hello world</p>
<script>
<<scripts/script.js>>
</script>
</body>in your CSS
element {
style: beautiful-styles;
}
<<more-styles.css>>in your JavaScript
function greeter() {
console.log('Hello World');
}
<<more-functions.js>>related
inject-files - API for this module
GitHub: inject-files
npm: inject-files
inject-dev-server - dev server using the inject-files API
GitHub: inject-dev-server
npm: inject-dev-server