First development of the deploy action (#6)
Some checks failed
Lint / pre-commit Linting (push) Has been cancelled
Some checks failed
Lint / pre-commit Linting (push) Has been cancelled
Deploy js code to an instance of screeps. Some debugging tools are implemented. Reviewed-on: #6 Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de> Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
This commit is contained in:
43
node_modules/expand-template/README.md
generated
vendored
Normal file
43
node_modules/expand-template/README.md
generated
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
# expand-template
|
||||
|
||||
> Expand placeholders in a template string.
|
||||
|
||||
[](https://www.npmjs.com/package/expand-template)
|
||||
[](https://travis-ci.org/ralphtheninja/expand-template)
|
||||
[](https://david-dm.org/ralptheninja/expand-template)
|
||||
[](https://standardjs.com)
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm i expand-template -S
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Default functionality expands templates using `{}` as separators for string placeholders.
|
||||
|
||||
```js
|
||||
var expand = require('expand-template')()
|
||||
var template = '{foo}/{foo}/{bar}/{bar}'
|
||||
console.log(expand(template, {
|
||||
foo: 'BAR',
|
||||
bar: 'FOO'
|
||||
}))
|
||||
// -> BAR/BAR/FOO/FOO
|
||||
```
|
||||
|
||||
Custom separators:
|
||||
|
||||
```js
|
||||
var expand = require('expand-template')({ sep: '[]' })
|
||||
var template = '[foo]/[foo]/[bar]/[bar]'
|
||||
console.log(expand(template, {
|
||||
foo: 'BAR',
|
||||
bar: 'FOO'
|
||||
}))
|
||||
// -> BAR/BAR/FOO/FOO
|
||||
```
|
||||
|
||||
## License
|
||||
All code, unless stated otherwise, is dual-licensed under [`WTFPL`](http://www.wtfpl.net/txt/copying/) and [`MIT`](https://opensource.org/licenses/MIT).
|
Reference in New Issue
Block a user