forked from devtheorem/cropt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite site with Bootstrap and dynamic options
- Loading branch information
1 parent
4a98474
commit e337fcc
Showing
21 changed files
with
1,837 additions
and
662 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.idea/ | ||
node_modules/ | ||
demo/build/ |
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,36 @@ | ||
module.exports = function (grunt) { | ||
grunt.initConfig({ | ||
copy: { | ||
dist: { | ||
files: [ | ||
{ | ||
expand: true, | ||
cwd: "node_modules/bootstrap/dist/js", | ||
src: "bootstrap.bundle.min.*", | ||
dest: "demo/build", | ||
}, | ||
{ | ||
expand: true, | ||
cwd: "", | ||
src: ["cropt.js", "cropt.css"], | ||
dest: "demo/build", | ||
}, | ||
], | ||
}, | ||
}, | ||
sass: { | ||
dist: { | ||
options: { | ||
style: "expanded", | ||
}, | ||
files: { | ||
"demo/build/bs-custom.css": "demo/styles.scss", | ||
}, | ||
}, | ||
}, | ||
}); | ||
|
||
grunt.loadNpmTasks("grunt-contrib-copy"); | ||
grunt.loadNpmTasks("grunt-contrib-sass"); | ||
grunt.registerTask("default", ["copy", "sass"]); | ||
}; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.