This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

inject-files-cli

1.0.7 • Public • Published

inject-files-cli


usage

global

$ npm install inject-files-cli --global

$ inject-files-cli source/index.html build/index.html

as a dev-dependency

install
$ npm install inject-files-cli --save-dev
in package.json
{
  ...
  "scripts": {
		"inject": "inject-files-cli source/index.html build/index.html"
	},
  ...
}
run the npm-script
$ npm run inject

CLI

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

Package Sidebar

Install

npm i inject-files-cli

Weekly Downloads

8

Version

1.0.7

License

MIT

Last publish

Collaborators

  • patrickneugebauer