Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
Release version
  • Loading branch information
terron-kun committed Nov 20, 2016
1 parent be4b65e commit 8903e80
Show file tree
Hide file tree
Showing 41 changed files with 47,590 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
_examples
.vscode
node_modules
*.zip
43 changes: 43 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
'use strict';

const elixir = require('laravel-elixir');

//require('laravel-elixir-vue-2');

elixir(mix => {
/* Options */
mix
.sass('./resources/assets/sass/options.scss', './public/css/options.css')
.scripts([
'./node_modules/vue/dist/vue.js',
'./node_modules/jquery/dist/jquery.js',
'./resources/assets/js/vendor/browser-polyfill.js',
'./resources/assets/js/_variables.js',
'./resources/assets/js/_functions.js',
'./resources/assets/js/options.js'
], './public/js/options.js');

/* Background */
mix
.scripts([
'./resources/assets/js/vendor/browser-polyfill.js',
'./resources/assets/js/_variables.js',
'./resources/assets/js/_functions.js',
'./resources/assets/js/background.js',
], './public/js/background.js');

/* Newtab */
mix
.sass('./resources/assets/sass/newtab.scss', './public/css/newtab.css')
.scripts([
'./node_modules/vue/dist/vue.js',
'./node_modules/jquery/dist/jquery.js',
'./node_modules/bootstrap/js/dist/util.js',
'./node_modules/bootstrap/js/dist/collapse.js',
'./node_modules/bootstrap/js/dist/modal.js',
'./resources/assets/js/vendor/browser-polyfill.js',
'./resources/assets/js/_variables.js',
'./resources/assets/js/_functions.js',
'./resources/assets/js/newtab.js',
], './public/js/newtab.js');
});
21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"private": true,
"scripts": {
"prod": "gulp --production",
"dev": "gulp watch"
},
"dependencies": {
"bootstrap": "^4.0.0-alpha.5",
"jquery": "3.*",
"vue": "^2.0.5",
"webextension-polyfill": "github:mozilla/webextension-polyfill"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"laravel-elixir": "^6.0.0-9",
"laravel-elixir-vue-2": "^0.2.0",
"laravel-elixir-webpack-official": "^1.0.9",
"vue-resource": "^1.0.3"
}
}
282 changes: 282 additions & 0 deletions public/_locales/ru/messages.json

Large diffs are not rendered by default.

Loading

0 comments on commit 8903e80

Please sign in to comment.