Skip to content

Commit

Permalink
Created new version of plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
abuturla committed Feb 15, 2018
1 parent 47735cf commit c764b7a
Show file tree
Hide file tree
Showing 26 changed files with 8,737 additions and 814 deletions.
3 changes: 0 additions & 3 deletions .bowerrc

This file was deleted.

27 changes: 27 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"extends": ["eslint:recommended"],
"rules": {
"quotes": 0,
"strict": [2, "never"],
"semi": [2, "always"],
"no-multi-spaces": 0,
"key-spacing": 0,
"curly": 0,
"no-irregular-whitespace": 0,
"no-console": 0,
"no-octal-escape": 0,
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"new-cap": 0,
"no-shadow": 0,
"camelcase": 0
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"mocha": true
}
}
39 changes: 36 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,60 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
dist/
plugin.zip

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
# dotenv environment variables file
.env
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

5 changes: 2 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)
MIT License

Copyright (c) 2015 BuildFire
Copyright (c) 2017 BuildFire

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -19,4 +19,3 @@ 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.

19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# Web View ![](https://api.travis-ci.org/BuildFire/webviewPlugin.svg)
# BuildFire Webpack Plugin Template
The following template uses webpack in order to provide module support and minification out of the box.

## Getting Started
Be sure to have the latest [BuildFire CLI](https://github.com/BuildFire/sdk-cli) installed in your system.

# Download the latest SDK if you haven't already
$ buildfire create

# Once inside the SDK's folder
$ buildfire init webpack <pluginName>

## Usage
Be sure to be on the SDK's folder while running the following commands

`$ buildfire run <pluginName>` - Start the plugin viewer on the selected `pluginName`.

`$ buildfire build <pluginName>` - Build the selected `pluginName`
20 changes: 0 additions & 20 deletions bower.json

This file was deleted.

78 changes: 0 additions & 78 deletions karma.conf.js

This file was deleted.

Loading

0 comments on commit c764b7a

Please sign in to comment.