Skip to content

Commit

Permalink
Upgrade Foundation to 6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
daigofuji committed Feb 28, 2016
1 parent dd03ee4 commit 9014b05
Show file tree
Hide file tree
Showing 220 changed files with 31,419 additions and 16,503 deletions.
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
Twitter: https://dev.twitter.com/docs/cards/types/summary-card
============================== -->
<meta property="og:title" content="{{ page.title }}"/>
<meta property="og:site_name" content=" - {{ site.name }}"/>
<meta property="og:url" content=" - {{ site.url }}"/>
<meta property="og:site_name" content="{{ site.name }}"/>
<meta property="og:url" content="{{ site.url }}"/>
<meta property="og:description" content="{{ page.description }}"/>
<meta property="og:image" content="{{ page.imageurl }}"/>
<meta name="twitter:card" content="summary">
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "MIT",
"homepage": "http://foundation.zurb.com",
"dependencies": {
"foundation-sites": "~6.1.0",
"foundation-sites": "~6.2.0",
"motion-ui": "~1.1.0"
},
"ignore": [
Expand Down
13 changes: 13 additions & 0 deletions bower_components/foundation-sites/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"plugins": [
"transform-es2015-arrow-functions",
"transform-es2015-block-scoped-functions",
"transform-es2015-block-scoping",
"transform-es2015-classes",
"transform-es2015-destructuring",
"transform-es2015-template-literals",
"transform-es2015-parameters",
"transform-es2015-shorthand-properties",
"transform-es2015-spread",
]
}
12 changes: 6 additions & 6 deletions bower_components/foundation-sites/.bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "foundation-sites",
"version": "6.1.2",
"version": "6.2.0",
"main": [
"scss/foundation.scss",
"dist/foundation.js"
Expand All @@ -25,17 +25,17 @@
".versions"
],
"dependencies": {
"jquery": "~2.1.0",
"jquery": "~2.2.0",
"what-input": "~1.1.2"
},
"homepage": "https://github.com/zurb/foundation-sites",
"_release": "6.1.2",
"_release": "6.2.0",
"_resolution": {
"type": "version",
"tag": "v6.1.2",
"commit": "b7cedf57265b8c8ed9b746096cc2dd9dade9c55c"
"tag": "v6.2.0",
"commit": "d79008091c6f32ffd9bd6ea60d266c4a76771886"
},
"_source": "git://github.com/zurb/foundation-sites.git",
"_target": "~6.1.0",
"_target": "~6.2.0",
"_originalSource": "foundation-sites"
}
3 changes: 3 additions & 0 deletions bower_components/foundation-sites/.bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "bower_components"
}
65 changes: 65 additions & 0 deletions bower_components/foundation-sites/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"ecmaVersion": 6,
"env": {
"browser": true,
"builtin": true,
"es6": true,
"jasmine": true,
"jquery": true,
"mocha": true,
"node": true
},
"globals": {
"Foundation": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"impliedStrict": true,
"jsx": false
},
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"block-scoped-var": 2,
"camelcase": 2,
"comma-style": [2, "last"],
"curly": [0, "all"],
"dot-notation": [
2,
{
"allowKeywords": true
}
],
"eqeqeq": [2, "allow-null"],
"guard-for-in": 2,
"new-cap": 2,
"no-bitwise": 2,
"no-caller": 2,
"no-cond-assign": [2, "except-parens"],
"no-debugger": 2,
"no-empty": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-parens": 1,
"no-irregular-whitespace": 2,
"no-iterator": 2,
"no-loop-func": 2,
"no-multi-str": 2,
"no-new": 2,
"no-plusplus": 0,
"no-proto": 2,
"no-script-url": 2,
"no-sequences": 2,
"no-shadow": 1,
"no-undef": 2,
"no-unused-vars": 1,
"no-with": 2,
"quotes": 0,
"semi": [0, "never"],
"strict": [1, "global"],
"valid-typeof": 2,
"wrap-iife": [2, "inside"]
}
}
189 changes: 189 additions & 0 deletions bower_components/foundation-sites/.scss-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
# Default application configuration that all configurations inherit from.

scss_files: "scss/**/*.scss"

linters:
BangFormat:
enabled: true
space_before_bang: true
space_after_bang: false

BorderZero:
enabled: true
convention: zero # or `none`

ColorKeyword:
enabled: true

ColorVariable:
enabled: true

Comment:
enabled: false

DebugStatement:
enabled: true

DeclarationOrder:
enabled: true

DuplicateProperty:
enabled: true

ElsePlacement:
enabled: true
style: new_line # or 'same_line'

EmptyLineBetweenBlocks:
enabled: true
ignore_single_line_blocks: true

EmptyRule:
enabled: true

FinalNewline:
enabled: true
present: true

HexLength:
enabled: true
style: short # or 'long'

HexNotation:
enabled: true
style: lowercase # or 'uppercase'

HexValidation:
enabled: true

IdSelector:
enabled: true

ImportantRule:
enabled: false

ImportPath:
enabled: true
leading_underscore: false
filename_extension: false

Indentation:
enabled: true
allow_non_nested_indentation: false
character: space # or 'tab'
width: 2

LeadingZero:
enabled: true
style: include_zero # or 'include_zero'

MergeableSelector:
enabled: true
force_nesting: true

NameFormat:
enabled: true
allow_leading_underscore: true
convention: hyphenated_lowercase # or 'BEM', or a regex pattern

NestingDepth:
enabled: true
max_depth: 3

PlaceholderInExtend:
enabled: true

PropertyCount:
enabled: false
include_nested: false
max_properties: 10

PropertySortOrder:
enabled: false
ignore_unspecified: false
separate_groups: false

PropertySpelling:
enabled: true
extra_properties: []

QualifyingElement:
enabled: true
allow_element_with_attribute: false
allow_element_with_class: false
allow_element_with_id: false

SelectorDepth:
enabled: true
max_depth: 3

SelectorFormat:
enabled: true
convention: '([a-z0-9]+-?)+'

Shorthand:
enabled: true

SingleLinePerProperty:
enabled: true
allow_single_line_rule_sets: false

SingleLinePerSelector:
enabled: false

SpaceAfterComma:
enabled: true

SpaceAfterPropertyColon:
enabled: true
style: one_space # or 'no_space', or 'at_least_one_space', or 'aligned'

SpaceAfterPropertyName:
enabled: true

SpaceBeforeBrace:
enabled: true
style: space # or 'new_line'
allow_single_line_padding: true

SpaceBetweenParens:
enabled: true
spaces: 0

StringQuotes:
enabled: true
style: single_quotes # or double_quotes

TrailingSemicolon:
enabled: true

TrailingZero:
enabled: false

UnnecessaryMantissa:
enabled: true

UnnecessaryParentReference:
enabled: true

UrlFormat:
enabled: true

UrlQuotes:
enabled: true

VariableForProperty:
enabled: false
properties: []

VendorPrefixes:
enabled: true
identifier_list: base
include: []
exclude: []

ZeroUnit:
enabled: true

Compass::*:
enabled: false
4 changes: 4 additions & 0 deletions bower_components/foundation-sites/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
language: node_js
node_js:
- "0.12"
before_install:
- rvm install 2.2.2
install:
- npm install -g bower
- npm install
- gem install scss_lint
script: npm start test:sass
Loading

0 comments on commit 9014b05

Please sign in to comment.