1.0.7 • Published 10 years ago

inject-files-cli v1.0.7

Weekly downloads
17
License
MIT
Repository
github
Last release
10 years ago

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

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago