Skip to content

Commit

Permalink
feat: init
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Apr 5, 2018
0 parents commit 896752f
Show file tree
Hide file tree
Showing 15 changed files with 3,600 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf

[*.{ts,js,json}]
indent_style = space
indent_size = 2
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* text eol=lf

*.tgz binary
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Logs
logs
*.log
npm-debug.log*

# Dependency directory
node_modules

# Coverage directory used by tools like istanbul
coverage

fixtures
.tmp
_docpress

lib

# Visual Studio Code configs
.vscode/

.store
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js
node_js:
- 4
- 6
- 8
- 9
sudo: false
before_install:
- curl -L https://unpkg.com/@pnpm/self-installer | node
install:
- pnpm install
script:
- npm test
notifications:
email: false
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2018 Zoltan Kochan <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @pnpm/merge-driver

> A merge driver for shrinkwrap.yaml
<!--@shields('npm', 'travis')-->
[![npm version](https://img.shields.io/npm/v/@pnpm/merge-driver.svg)](https://www.npmjs.com/package/@pnpm/merge-driver) [![Build Status](https://img.shields.io/travis/pnpm/merge-driver/master.svg)](https://travis-ci.org/pnpm/merge-driver)
<!--/@-->

## Installation

```sh
npm i -S @pnpm/logger @pnpm/merge-driver
```

## License

[MIT](./LICENSE) © [Zoltan Kochan](https://www.kochan.io/)
64 changes: 64 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"name": "@pnpm/merge-driver",
"version": "0.0.0",
"description": "A merge driver for shrinkwrap.yaml",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": "lib/cli.js",
"files": [
"lib"
],
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "tslint -c tslint.json --project .",
"tsc": "rimraf lib && tsc",
"test": "rimraf .store && npm run lint && preview && ts-node test --type-check && mos t",
"md": "mos",
"prepublishOnly": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/merge-driver.git"
},
"keywords": [
"pnpm",
"git",
"merge",
"driver"
],
"author": "Zoltan Kochan <[email protected]> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/merge-driver/issues"
},
"homepage": "https://github.com/pnpm/merge-driver#readme",
"peerDependencies": {
"@pnpm/logger": "^1.0.0"
},
"dependencies": {
"@types/ramda": "^0.25.21",
"pnpm-shrinkwrap": "^6.2.4",
"ramda": "^0.25.0"
},
"devDependencies": {
"@types/tape": "^4.2.31",
"mos": "^2.0.0-alpha.3",
"mos-plugin-readme": "^1.0.4",
"package-preview": "^1.0.1",
"rimraf": "^2.6.2",
"tape": "^4.8.0",
"ts-node": "^5.0.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"mos": {
"plugins": [
"readme"
],
"installation": {
"useShortAlias": true
}
}
}
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": [
"config:base"
],
"pinVersions": false
}
Loading

0 comments on commit 896752f

Please sign in to comment.