-
Notifications
You must be signed in to change notification settings - Fork 0
Grunt Automation branch updated #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
itorepo
wants to merge
8
commits into
master
Choose a base branch
from
grunt
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d33f04b
initial commit of project directory structure refactoring according t…
itodemo c146203
initial Grunt config skeleton created
itodemo 281c822
basic JSHint linting was integrated into the project
itodemo 40cf9f0
updated the directores structure according to the latest project auto…
dicryptoid 4dd2109
minor package desription text update followed json indetation changes…
dicryptoid 7de608e
application description and promo text changed
dicryptoid 214484d
added initial .gitattributes file containing Diff calculation mapping…
dicryptoid 2ab7f9d
Merge branch 'master' into grunt
kdidenko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| src/**/*.css diff=css | ||
| src/**/*.html diff=html | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,4 @@ | ||
| .vscode/ | ||
| .idea/ | ||
| build/ | ||
| node_modules/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| /** | ||
| * A module that defines the configuration and registers both | ||
| * defaults and globals for the project's Grunt tasks | ||
| * @module tabsaver/grunt | ||
| * @author Kostyanntyn Didenko <kdidenko@ito-global.com> | ||
| * @since 1.2.0 | ||
| * | ||
| * @todo: 1. define module:tabsaver.grunt.uglify tasks using `grunt-contrib-uglify` plug-in | ||
| * @todo: 2. define module:tabsaver.grunt.watch tasks using `grunt-contrib-watch` plug-in | ||
| * @todo: 3. define module:tabsaver.grunt.cssmin tasks using `grunt-contrib-cssmin` plug-in | ||
| * */ | ||
|
|
||
| /** | ||
| * @function | ||
| * Creates the initial Grunt configuration, loads the rest of Grunt tasks | ||
| * and registeres Grunt's global tasks | ||
| * | ||
| * @param {IGrunt} grunt - instance itself | ||
| * @returns void | ||
| */ | ||
| module.exports = function (grunt) { | ||
| 'use strict'; | ||
|
|
||
| // init Grunt project configuration | ||
| grunt.initConfig({ | ||
| /** | ||
| * @readonly | ||
| * read and store the project's metadata and settings | ||
| */ | ||
| package: grunt.file.readJSON('package.json'), | ||
| /** | ||
| * @readonly | ||
| * @enum enumerates main paths for current project | ||
| */ | ||
| paths: { | ||
| src: 'src/', | ||
| build: 'build/', | ||
| tests: 'test/', | ||
| grunt: { | ||
| file: 'Gruntfile.js', | ||
| tasks: 'grunt/' | ||
| } | ||
| }, | ||
| /** | ||
| * @readonly | ||
| * @enum enumerates main matching globs for project files | ||
| */ | ||
| globs: { | ||
| js: { | ||
| flat: '*.js', | ||
| deep: '**/*.js' | ||
| } | ||
| } | ||
| }); | ||
| /** | ||
| * @external | ||
| * load and marge external Grunt tasks into current configuration | ||
| */ | ||
| grunt.loadTasks(grunt.config('paths.grunt.tasks')); | ||
| /** | ||
| * @global | ||
| * register Grunt project global tasks | ||
| * @requires module:tabsaver.grunt.jshint | ||
| */ | ||
| grunt.registerTask('build', ['jshint-all']); | ||
| /** | ||
| * @default | ||
| * register Grunt project default task | ||
| */ | ||
| grunt.registerTask('default', ['build']); | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,18 @@ | ||
| # TabSaver v 1.1.14 | ||
| # TabSaver v1.x.y | ||
|
|
||
| TabSaver is a simple and lightweight Google Chrome Extension for saving, synchronizing and restoring the list of opened tabs before closing the browser. | ||
| --- | ||
| ## Overview | ||
|
|
||
| Have you ever faced a mess of tabs in your browser? Do you want to browse a lot of information and at the same time not to spend much time organizing your browser tabs? TabSaver will help you! | ||
| **«TabSaver»** - is a simple and lightweight Google Chrome Extension for saving, synchronizing, and restoring user's browsing sessions before closing the browser in a form of simple list of opened tabs. | ||
|
|
||
| TabSaver - is an easy way to sort, select and save the list of opened browser tabs instantly. There’s no need to be annoyed with too many confusing tabs in Chrome. You can shut down the browser at any time and continue your navigation from anywhere - saved tabs will be simply re-opened. One click will save your minutes every day which you can use later in a better way. | ||
| >Have you ever faced a mess of tabs in your browser? Do you want to browse a lot of information and at the same time not to spend much time organizing your browser tabs? TabSaver will help you! | ||
|
|
||
| --- | ||
| ## Simple Functionality | ||
|
|
||
| Our browser extension - is an easiest way to sort, select and save the list of opened browser tabs instantly. There’s no need to be annoyed with too many confusing tabs in Chrome. You can shut down the browser at any time and continue your navigation from anywhere - saved tabs will be simply re-opened. One click will save your minutes every day which you can use later in a better way. | ||
|
|
||
| --- | ||
| ## FOSS "Forever Free" Approach | ||
|
|
||
| Designed by a group of Free Open Source Software enthusiasts, with a simple and user-friendly interface in mind, making it extremely easy to save your browsing sessions by converting all your opened tabs into the synchronizable list with just one click. Now, it is easy to work with a lot of information in a browser without worry about its persistence. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,70 @@ | ||
| /** | ||
| * A module that defines Grunt's JSHint linting task configuration | ||
| * @module tabsaver/grunt/jshint | ||
| * @author Kostyanntyn Didenko <kdidenko@ito-global.com> | ||
| * @since version 1.2.0 | ||
| */ | ||
|
|
||
| /** | ||
| * @function | ||
| * When executed, loads the JSHint Grunt task plug-in, defines its configuration | ||
| * and registers it as a Grunt's global task | ||
| * | ||
| * @param {IGrunt} grunt - instance itself | ||
| * @returns void | ||
| */ | ||
| module.exports = function (grunt) { | ||
| 'use strict'; | ||
|
|
||
| // load the JSHint plug-in | ||
| grunt.loadNpmTasks('grunt-contrib-jshint'); | ||
| // define the JSHint task configuration | ||
| grunt.config('jshint', { | ||
| // task-level linting options for JSHint | ||
| options: { | ||
| reporter: require('jshint-stylish'), // let's do it with style ;) | ||
| esversion: 6 | ||
| }, | ||
| /** @exports jshint:grunt */ | ||
| grunt: { | ||
| /** | ||
| * @override | ||
| * target-level options overrides | ||
| */ | ||
| options: { | ||
| force: true, | ||
| node: true | ||
| }, | ||
| src: [ | ||
| '<%= paths.grunt.file %>', | ||
| '<%= paths.grunt.tasks %><%= globs.js.deep %>' | ||
| ] | ||
| }, | ||
| /** @exports jshint:tests */ | ||
| tests: { | ||
| /** | ||
| * @override | ||
| * target-level options overrides | ||
| */ | ||
| options: { | ||
| force: true, | ||
| node: true | ||
| }, | ||
| src: ['<%= paths.tests %><%= globs.js.deep %>'] | ||
| }, | ||
| /** @exports jshint:build */ | ||
| build: { | ||
| /** | ||
| * @override | ||
| * target-level options overrides | ||
| */ | ||
| options: { force: false }, | ||
| src: ['<%= paths.src %><%= globs.js.deep %>'] | ||
| } | ||
| }); | ||
| /** | ||
| * @global | ||
| * register additional `jshint-all` task for current module | ||
| */ | ||
| grunt.registerTask('jshint-all', ['jshint:grunt', 'jshint:tests', 'jshint:build']); | ||
| }; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.