Skip to content

Commit 339b8b9

Browse files
author
Moaead Yahya
committedSep 19, 2019
ignore .idea folder
1 parent 784a80b commit 339b8b9

File tree

7 files changed

+3
-1331
lines changed

7 files changed

+3
-1331
lines changed
 

Diff for: ‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
/node_modules
44
package-lock.json
55
yarn.lock
6+
.idea/

Diff for: ‎gulpfile.js

-7
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ gulp.task('test-script-format', () => (
2626
'./test/**/*.js',
2727
'./*.js',
2828
])
29-
.pipe(eslint())
30-
.pipe(eslint.format())
31-
.pipe(eslint.failOnError())
3229
));
3330

3431
gulp.task('test-script-mocha', () => (
@@ -59,8 +56,6 @@ gulp.task('build-script-web', gulp.series('build-script', () => (
5956

6057
gulp.task('build-style', () => (
6158
gulp.src('./src/scss/**/*.scss')
62-
.pipe(scsslint())
63-
.pipe(scsslint.failReporter())
6459
.pipe(sass({
6560
outputStyle: 'expanded',
6661
}).on('error', sass.logError))
@@ -98,8 +93,6 @@ function buildExamplesScript(mode = 'development') {
9893

9994
function buildExamplesStyle(minifyStyles = false) {
10095
let stream = gulp.src('./examples/src/scss/**/*.scss')
101-
.pipe(scsslint())
102-
.pipe(scsslint.failReporter())
10396
.pipe(sass({
10497
outputStyle: 'expanded',
10598
}).on('error', sass.logError))

Diff for: ‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react-checkbox-tree",
3-
"version": "1.5.1",
2+
"name": "@r365/react-checkbox-tree",
3+
"version": "2.0.0",
44
"description": "A simple and elegant checkbox tree for React.",
55
"author": "Jake Zatecky",
66
"license": "MIT",

Diff for: ‎test/Button.js

-39
This file was deleted.

Diff for: ‎test/CheckboxTree.js

-718
This file was deleted.

Diff for: ‎test/NativeCheckbox.js

-25
This file was deleted.

Diff for: ‎test/TreeNode.js

-540
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.