Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
HaNdTriX committed Jan 8, 2018
0 parents commit 8830597
Show file tree
Hide file tree
Showing 48 changed files with 3,312 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

/assets
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: node_js
node_js:
- 'stable'
- '7'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-web-extension' ]; then cd .. && eval "mv $currentfolder generator-web-extension" && cd generator-web-extension; fi
33 changes: 33 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
The MIT License (MIT)

Copyright 2018 Henrik Wenz (handtrix@gmail.com)

The following license applies to all parts of this software except as
documented below:

====

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.

====

All files located in the node_modules and external directories are
externally maintained libraries used by this software which have their
own licenses; we recommend you read them, as their terms may differ from
the terms above.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
![generator-web-extension](assets/logo-repo.png)

[![Build Status](https://secure.travis-ci.org/HaNdTriX/generator-web-extension.png?branch=master)](https://travis-ci.org/HaNdTriX/generator-web-extension) [![npm package](https://badge.fury.io/js/generator-web-extension.svg)](https://www.npmjs.com/package/generator-web-extension)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-green.svg?style=flat-square)](https://github.com/feross/standard)
[![license](https://img.shields.io/npm/l/generator-web-extension.svg)](https://github.com/HaNdTriX/generator-web-extension/blob/master/LICENSE)

Advanced WebExtension generator that creates everything you need to get started with cross-browser web-extension development.

Under the hood it uses [webextension-toolbox](https://github.com/HaNdTriX/webextension-toolbox) for compiling the extensions.

## Install

$ npm install -g yo generator-web-extension

## Getting Started

- First make a new directory, and `cd` into it: `mkdir my-new-chrome-extension && cd $_`
- Run: `yo web-extension`.

## Options

* `--skip-install`

Skips the automatic execution of `npm` after
scaffolding has finished.

## License

Copyright 2018 Henrik Wenz

This project is free software released under the MIT license.
Loading

0 comments on commit 8830597

Please sign in to comment.