Skip to content
This repository has been archived by the owner on Dec 20, 2022. It is now read-only.

Adicionando Package.json #1704

Merged
6 commits merged into from Aug 29, 2016
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
46 changes: 46 additions & 0 deletions package.json
@@ -0,0 +1,46 @@
{
"name": "locawebstyle",
"version": "3.8.5",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seria interessante adicionar a mudança dessa versão na nossa rake de deploy?

"homepage": "http://locaweb.github.io/locawebstyle/",
"authors": [
"Locaweb Front-end Team <frontend@locaweb.com.br>"
],
"description": "Front-end framework used by Locaweb",
"main": "dist/javascripts/locastyle.js",
"keywords": [
"framework",
"components",
"css",
"responsive"
],
"license": "MIT",
"ignore": [
"**/.*",
"/build",
"/helpers",
"/locales",
"/scripts",
"/source",
"/spec",
"dist/stylesheets/docs.css",
"dist/javascripts/docs",
"dist/javascripts/docs.js",
"dist/javascripts/busca.js",
"dist/images/docs",
"config.rb",
"Gemfile",
"Gemfile.lock",
"Rakefile",
"readme.md"
],
"dependencies": {
"jquery": ">= 2.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/locaweb/locawebstyle.git"
},
"bugs": {
"url": "https://github.com/locaweb/locawebstyle/issues"
}
}
12 changes: 10 additions & 2 deletions readme.md
Expand Up @@ -27,7 +27,7 @@ your project:
<head>
...
<!-- Insert the CSS in HEAD -->
<link rel="stylesheet" type="text/css" href="//assets.locaweb.com.br/locastyle/3.7.4/stylesheets/locastyle.css">
<link rel="stylesheet" type="text/css" href="//assets.locaweb.com.br/locastyle/3.8.5/stylesheets/locastyle.css">
...
</head>
<body>
Expand All @@ -37,7 +37,7 @@ your project:
<script src="http://code.jquery.com/jquery-2.0.1.min.js">

<!-- Put the JS in your footer, always after jQuery (dependency) -->
<script src="//assets.locaweb.com.br/locastyle/3.7.4/javascripts/locastyle.js"></script>
<script src="//assets.locaweb.com.br/locastyle/3.8.5/javascripts/locastyle.js"></script>
</body>
```

Expand All @@ -50,6 +50,14 @@ To install the Locaweb Style using Bower:
$ bower install locawebstyle
```

#### Installing via [npm](https://www.npmjs.com/)

To install the Locaweb using Npm:

```sh
$ npm install locawebstyle
```

### Read the manual

We maintain the
Expand Down