-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
175 changed files
with
11,729 additions
and
538 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -11,14 +11,14 @@ | |
"url": "[email protected]:select2/select2.git" | ||
}, | ||
"homepage": "https://github.com/ivaynberg/select2", | ||
"version": "4.0.5", | ||
"_release": "4.0.5", | ||
"version": "4.0.7", | ||
"_release": "4.0.7", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "4.0.5", | ||
"commit": "ebf10c93db7d6d7a0d1330119d4c6f32cbd231d7" | ||
"tag": "4.0.7", | ||
"commit": "04fce559673684af8ec2912457a9d6380ea90314" | ||
}, | ||
"_source": "https://github.com/ivaynberg/select2.git", | ||
"_target": "^4.0.3", | ||
"_target": "^4.0.7", | ||
"_originalSource": "select2" | ||
} |
This file contains 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
This file contains 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
14 changes: 14 additions & 0 deletions
14
assets/backend/AdminLTE/bower_components/select2/.github/stale.yml
This file contains 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,14 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 60 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
# Issues with these labels will never be considered stale | ||
# Label to use when marking an issue as stale | ||
staleLabel: "status: stale" | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false |
This file contains 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 @@ | ||
node_modules | ||
dist/js/i18n/build.txt | ||
.sass-cache |
49 changes: 49 additions & 0 deletions
49
assets/backend/AdminLTE/bower_components/select2/CHANGELOG.md
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -62,10 +62,6 @@ module.exports = function (grunt) { | |
grunt.initConfig({ | ||
package: grunt.file.readJSON('package.json'), | ||
|
||
clean: { | ||
docs: ['docs/_site'] | ||
}, | ||
|
||
concat: { | ||
'dist': { | ||
options: { | ||
|
@@ -124,88 +120,10 @@ module.exports = function (grunt) { | |
} | ||
}, | ||
|
||
'saucelabs-qunit': { | ||
all: { | ||
options: { | ||
build: testBuildNumber, | ||
tags: ['tests', 'qunit'], | ||
urls: testUrls, | ||
testTimeout: 8000, | ||
testname: 'QUnit test for Select2', | ||
browsers: [ | ||
{ | ||
browserName: 'internet explorer', | ||
version: '8', | ||
platform: 'Windows 7' | ||
}, | ||
{ | ||
browserName: 'internet explorer', | ||
version: '9', | ||
platform: 'Windows 7' | ||
}, | ||
{ | ||
browserName: 'internet explorer', | ||
version: '10', | ||
platform: 'Windows 7' | ||
}, | ||
|
||
{ | ||
browserName: 'internet explorer', | ||
version: '11', | ||
platform: 'Windows 10' | ||
}, | ||
|
||
{ | ||
browserName: 'firefox', | ||
platform: 'linux' | ||
}, | ||
|
||
{ | ||
browserName: 'chrome', | ||
platform: 'linux' | ||
}, | ||
|
||
{ | ||
browserName: 'opera', | ||
version: '12', | ||
platform: 'linux' | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
|
||
'gh-pages': { | ||
options: { | ||
base: 'docs', | ||
branch: 'master', | ||
clone: 'node_modules/grunt-gh-pages/repo', | ||
message: 'Updated docs with master', | ||
push: true, | ||
repo: '[email protected]:select2/select2.github.io.git' | ||
}, | ||
src: '**' | ||
}, | ||
|
||
jekyll: { | ||
options: { | ||
src: 'docs', | ||
dest: 'docs/_site' | ||
}, | ||
build: { | ||
d: null | ||
}, | ||
serve: { | ||
options: { | ||
serve: true, | ||
watch: true | ||
} | ||
} | ||
}, | ||
|
||
jshint: { | ||
options: { | ||
jshintrc: true | ||
jshintrc: true, | ||
reporterOutput: '' | ||
}, | ||
code: { | ||
src: ['src/js/**/*.js'] | ||
|
@@ -240,19 +158,6 @@ module.exports = function (grunt) { | |
} | ||
}, | ||
|
||
symlink: { | ||
docs: { | ||
cwd: 'dist', | ||
expand: true, | ||
overwrite: false, | ||
src: [ | ||
'*' | ||
], | ||
dest: 'docs/dist', | ||
filter: 'isDirectory' | ||
} | ||
}, | ||
|
||
requirejs: { | ||
'dist': { | ||
options: { | ||
|
@@ -331,19 +236,14 @@ module.exports = function (grunt) { | |
} | ||
}); | ||
|
||
grunt.loadNpmTasks('grunt-contrib-clean'); | ||
grunt.loadNpmTasks('grunt-contrib-concat'); | ||
grunt.loadNpmTasks('grunt-contrib-connect'); | ||
grunt.loadNpmTasks('grunt-contrib-jshint'); | ||
grunt.loadNpmTasks('grunt-contrib-qunit'); | ||
grunt.loadNpmTasks('grunt-contrib-requirejs'); | ||
grunt.loadNpmTasks('grunt-contrib-symlink'); | ||
grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
|
||
grunt.loadNpmTasks('grunt-gh-pages'); | ||
grunt.loadNpmTasks('grunt-jekyll'); | ||
grunt.loadNpmTasks('grunt-saucelabs'); | ||
grunt.loadNpmTasks('grunt-sass'); | ||
|
||
grunt.registerTask('default', ['compile', 'test', 'minify']); | ||
|
@@ -356,25 +256,5 @@ module.exports = function (grunt) { | |
grunt.registerTask('minify', ['uglify', 'sass:dist']); | ||
grunt.registerTask('test', ['connect:tests', 'qunit', 'jshint']); | ||
|
||
var ciTasks = []; | ||
|
||
ciTasks.push('compile'); | ||
ciTasks.push('connect:tests'); | ||
|
||
/* | ||
// grunt-saucelabs appears to be broken with Travis altogether now. | ||
// Can't run Sauce Labs tests in pull requests | ||
if (process.env.TRAVIS_PULL_REQUEST == 'false') { | ||
ciTasks.push('saucelabs-qunit'); | ||
} | ||
*/ | ||
|
||
ciTasks.push('qunit'); | ||
ciTasks.push('jshint'); | ||
|
||
grunt.registerTask('ci', ciTasks); | ||
|
||
grunt.registerTask('docs', ['symlink:docs', 'jekyll:serve']); | ||
|
||
grunt.registerTask('docs-release', ['default', 'clean:docs', 'gh-pages']); | ||
grunt.registerTask('ci', ['compile', 'test']); | ||
}; |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.