1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-04 13:10:09 +02:00

add node modules to repo

This commit is contained in:
s2
2018-06-03 13:47:11 +02:00
parent e8c95255e8
commit d002126b72
4115 changed files with 440218 additions and 7519 deletions

42
node_modules/rcedit/README.md generated vendored Normal file
View File

@@ -0,0 +1,42 @@
# node-rcedit
[![Travis Build Status](https://travis-ci.org/electron/node-rcedit.svg?branch=master)](https://travis-ci.org/electron/node-rcedit)
[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/m880ovvfwukowyne/branch/master?svg=true)](https://ci.appveyor.com/project/electron-bot/node-rcedit/branch/master)
Node module to edit resources of Windows executables.
## Building
* Clone the repository
* Run `npm install`
* Run `npm test` to run the tests
## Docs
```js
var rcedit = require('rcedit')
```
On platforms other than Windows, you will need to have [Wine](http://winehq.org)
1.6 or later installed and in the system path.
### `rcedit(exePath, options, callback)`
`exePath` is the path to the Windows executable to be modified.
`options` is an object that can contain following fields:
* `version-string` - An object containing properties to change the `exePath`'s
version string.
* `file-version` - File's version to change to.
* `product-version` - Product's version to change to.
* `icon` - Path to the icon file (`.ico`) to set as the `exePath`'s default icon.
* `requested-execution-level` - Requested execution level to change to, must be
either `asInvoker`, `highestAvailable`, or `requireAdministrator`. See
[here](https://msdn.microsoft.com/en-us/library/6ad1fshk.aspx#Anchor_9) for
more details.
* `application-manifest` - String path to a local manifest file to use.
See [here](https://msdn.microsoft.com/en-us/library/windows/desktop/aa374191.aspx)
for more details.
`callback` is the `Function` called when the command completes. The function
signature is `function (error)`.