Skip to content

Commit b92cc0a

Browse files
committed
Replace bower with npm
1 parent b377690 commit b92cc0a

File tree

5 files changed

+132
-28
lines changed

5 files changed

+132
-28
lines changed

.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Parts of this file were adapted from
2+
# GitHub’s collection of .gitignore file templates
3+
# which are Copyright (c) 2018 GitHub, Inc.
4+
# and released under the MIT License.
5+
# For more details, visit the project page:
6+
# https://github.com/github/gitignore
7+
8+
# Lockfiles (no dependences)
9+
package-lock.json
10+
yarn.lock
11+
12+
# Logs
13+
logs
14+
*.log
15+
npm-debug.log*
16+
yarn-debug.log*
17+
yarn-error.log*
18+
19+
# Runtime data
20+
pids
21+
*.pid
22+
*.seed
23+
*.pid.lock
24+
25+
# Directory for instrumented libs generated by jscoverage/JSCover
26+
lib-cov
27+
28+
# Coverage directory used by tools like istanbul
29+
coverage
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35+
.grunt
36+
37+
# Bower dependency directory (https://bower.io/)
38+
bower_components
39+
40+
# node-waf configuration
41+
.lock-wscript
42+
43+
# Compiled binary addons (https://nodejs.org/api/addons.html)
44+
build/Release
45+
46+
# Dependency directories
47+
node_modules/
48+
jspm_packages/
49+
50+
# TypeScript v1 declaration files
51+
typings/
52+
53+
# Optional npm cache directory
54+
.npm
55+
56+
# Optional eslint cache
57+
.eslintcache
58+
59+
# Optional REPL history
60+
.node_repl_history
61+
62+
# Output of 'npm pack'
63+
*.tgz
64+
65+
# Yarn Integrity file
66+
.yarn-integrity
67+
68+
# dotenv environment variables file
69+
.env
70+
71+
# parcel-bundler cache (https://parceljs.org/)
72+
.cache
73+
74+
# next.js build output
75+
.next
76+
77+
# nuxt.js build output
78+
.nuxt
79+
80+
# vuepress build output
81+
.vuepress/dist
82+
83+
# Serverless directories
84+
.serverless

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
node_js: node
3+
deploy:
4+
provider: npm
5+
6+
api_key:
7+
secure: hN1phLVHw08kdVndZ8mqD3PAxznxJLS01QgbBrdzKxCJkMLH8dihsvjx3lHGIbCzKkrk14E4RIGrxOjVewbNQ0RlHv5rPoDMFtj8Fk84Btp6SCAWNSiV04XmmASeP36mzYBqxoDWn0km4Bnsjlh6qccisWye+/OdAGP+NIcviVY=
8+
on:
9+
tags: true
10+
repo: rxrc/systemd-user-units

README.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# systemd/User Units
1+
# systemd Units
22

3-
[![Release](https://img.shields.io/github/release/rxrc/systemd-user-units.svg)](https://github.com/rxrc/systemd-user-units/releases)
4-
[![The Unlicense](https://img.shields.io/github/license/rxrc/systemd-user-units.svg)](./LICENSE.txt)
3+
[![npm](https://img.shields.io/npm/v/@rxrc/systemd-user-units.svg)](https://www.npmjs.com/package/@rxrc/systemd-user-units)
4+
[![github](https://img.shields.io/badge/github-rxrc/systemd--user--units-blue.svg)](https://github.com/rxrc/systemd-user-units)
55

66
## Description
77

8-
These are my systemd units for user services.
8+
These are my systemd units.
9+
10+
Stable versions are tagged on GitHub
11+
and published on npm as `@rxrc/systemd-user-units` for convenience.
912

1013
For a usage example, see my [dotfiles].
1114

@@ -17,7 +20,13 @@ This is free and unencumbered software released into the public domain.
1720

1821
## Warranty
1922

20-
This software is provided "as is" and without any express or
21-
implied warranties, including, without limitation, the implied
22-
warranties of merchantibility and fitness for a particular
23-
purpose.
23+
This software is provided by the copyright holders and contributors "as is" and
24+
any express or implied warranties, including, but not limited to, the implied
25+
warranties of merchantability and fitness for a particular purpose are
26+
disclaimed. In no event shall the copyright holder or contributors be liable for
27+
any direct, indirect, incidental, special, exemplary, or consequential damages
28+
(including, but not limited to, procurement of substitute goods or services;
29+
loss of use, data, or profits; or business interruption) however caused and on
30+
any theory of liability, whether in contract, strict liability, or tort
31+
(including negligence or otherwise) arising in any way out of the use of this
32+
software, even if advised of the possibility of such damage.

bower.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "@rxrc/systemd-user-units",
3+
"version": "2.3.0",
4+
"description": "Systemd units.",
5+
"homepage": "https://github.com/rxrc/systemd-user-units",
6+
"bugs": "https://github.com/rxrc/systemd-user-units/issues",
7+
"repository": "rxrc/systemd-user-units",
8+
"license": "Unlicense",
9+
"author": {
10+
"name": "Evan Sosenko",
11+
"email": "[email protected]"
12+
},
13+
"files": [
14+
"*.conf.d",
15+
"user"
16+
],
17+
"scripts": {
18+
"test": "true",
19+
"postversion": "git push && git push --tags"
20+
}
21+
}

0 commit comments

Comments
 (0)