Browse Source

Improve package.json

- Remove "ratchet" keyword (it's the package name)
- Replace `licenses` with `license`.
pull/300/merge^2
Zlatan Vasović 11 years ago
parent
commit
e4d0db2c54
  1. 2
      Gruntfile.js
  2. 2
      dist/ratchet-theme-android.css
  3. 2
      dist/ratchet-theme-ios.css
  4. 2
      dist/ratchet.css
  5. 2
      dist/ratchet.js
  6. 14
      dist/ratchet.min.css
  7. 4
      dist/ratchet.min.js
  8. 12
      docs/assets/css/docs.css
  9. 2
      docs/dist/ratchet-theme-android.css
  10. 2
      docs/dist/ratchet-theme-ios.css
  11. 2
      docs/dist/ratchet.css
  12. 2
      docs/dist/ratchet.js
  13. 14
      docs/dist/ratchet.min.css
  14. 4
      docs/dist/ratchet.min.js
  15. 8
      package.json

2
Gruntfile.js

@ -25,7 +25,7 @@ module.exports = function(grunt) {
' * =====================================================\n' +
' * Ratchet v<%= pkg.version %>\n' +
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * Licensed under <%= _.pluck(pkg.licenses, "url").join(", ") %>\n' +
' * Licensed under <%= pkg.license %>.\n' +
' *\n' +
' * V<%= pkg.version %> designed by @connors.\n' +
' * =====================================================\n' +

2
dist/ratchet-theme-android.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

2
dist/ratchet-theme-ios.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

2
dist/ratchet.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

2
dist/ratchet.js vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

14
dist/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/ratchet.min.js vendored

@ -1,8 +1,8 @@
/*
/*!
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

12
docs/assets/css/docs.css

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================
@ -76,13 +76,6 @@ body {
transform: translateX(-50%);
}
.version {
margin-top: 15px;
text-align: center;
margin-bottom: 0;
color: #777;
}
.docs-nav .docs-nav-trigger {
color: #fff;
cursor: pointer;
@ -156,9 +149,6 @@ body {
-moz-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.docs-header-content .version {
color: #b983a6;
}
.docs-header-content .btn:hover {
background-color: #fff;
-webkit-box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);

2
docs/dist/ratchet-theme-android.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

2
docs/dist/ratchet-theme-ios.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

2
docs/dist/ratchet.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

2
docs/dist/ratchet.js vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

14
docs/dist/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

4
docs/dist/ratchet.min.js vendored

@ -1,8 +1,8 @@
/*
/*!
* =====================================================
* Ratchet v2.0.0
* Copyright 2014 Connor Sears
* Licensed under http://www.opensource.org/licenses/MIT
* Licensed under MIT.
*
* V2.0.0 designed by @connors.
* =====================================================

8
package.json

@ -3,7 +3,6 @@
"description": "Build native apps with simple HTML, CSS, and JS components.",
"version": "2.0.0",
"keywords": [
"ratchet",
"css",
"ios",
"native",
@ -20,12 +19,7 @@
"bugs": {
"url": "https://github.com/twbs/ratchet/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"license": "MIT",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-banner": "~0.2.0",

Loading…
Cancel
Save