mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
Makefile and sass build working
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
||||
.DS_Store
|
||||
*.sw[mpcod]
|
||||
|
||||
.sass-cache/
|
||||
3
Gruntfile.js
Normal file
3
Gruntfile.js
Normal file
@ -0,0 +1,3 @@
|
||||
module.exports = function(grunt) {
|
||||
|
||||
}
|
||||
6
Makefile
Normal file
6
Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
|
||||
all: release
|
||||
|
||||
release:
|
||||
@sass -I scss/ scss/framework.scss:dist/framework.css
|
||||
1
dist/framework.css
vendored
Normal file
1
dist/framework.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
@charset "UTF-8";
|
||||
15
package.json
Normal file
15
package.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "framework",
|
||||
"private": true,
|
||||
"version": "0.0.01",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.0",
|
||||
"grunt-contrib-watch": "~0.1.0",
|
||||
},
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "https://github.com/zurb/foundation/blob/master/LICENSE"
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -1,43 +1,8 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
// This includes all of the framework global elements that are needed to work with any of the other files.
|
||||
@import "foundation/variables";
|
||||
@import "framework/variables";
|
||||
|
||||
// Foundation Components
|
||||
// Components
|
||||
@import
|
||||
""
|
||||
"foundation/components/global",
|
||||
"foundation/components/grid",
|
||||
"foundation/components/visibility",
|
||||
"foundation/components/block-grid",
|
||||
"foundation/components/type",
|
||||
"foundation/components/buttons",
|
||||
"foundation/components/forms",
|
||||
"foundation/components/button-groups",
|
||||
"foundation/components/dropdown-buttons",
|
||||
"foundation/components/split-buttons",
|
||||
"foundation/components/flex-video",
|
||||
"foundation/components/section",
|
||||
"foundation/components/top-bar",
|
||||
"foundation/components/orbit",
|
||||
"foundation/components/reveal",
|
||||
"foundation/components/joyride",
|
||||
"foundation/components/clearing",
|
||||
"foundation/components/alert-boxes",
|
||||
"foundation/components/breadcrumbs",
|
||||
"foundation/components/custom-forms",
|
||||
"foundation/components/keystrokes",
|
||||
"foundation/components/labels",
|
||||
"foundation/components/inline-lists",
|
||||
"foundation/components/pagination",
|
||||
"foundation/components/panels",
|
||||
"foundation/components/pricing-tables",
|
||||
"foundation/components/progress-bars",
|
||||
"foundation/components/side-nav",
|
||||
"foundation/components/sub-nav",
|
||||
"foundation/components/switch",
|
||||
"foundation/components/magellan",
|
||||
"foundation/components/tables",
|
||||
"foundation/components/thumbs",
|
||||
"foundation/components/tooltips",
|
||||
"foundation/components/dropdown";
|
||||
"framework/components/buttons";
|
||||
0
scss/framework/_variables.scss
Normal file
0
scss/framework/_variables.scss
Normal file
Reference in New Issue
Block a user