-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from giuseppeg/update-modules-in-generated-pkg
Update modules in generated package
- Loading branch information
Showing
13 changed files
with
87 additions
and
50 deletions.
There are no files selected for viewing
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,25 +1,25 @@ | ||
=== HEAD | ||
# HEAD | ||
|
||
=== 0.4.0 (April 5, 2014) | ||
### 0.4.0 (April 5, 2014) | ||
|
||
* Add latest build tools. | ||
* Add npm support in generated components. | ||
|
||
=== 0.3.0 (February 8, 2014) | ||
### 0.3.0 (February 8, 2014) | ||
|
||
* Add 'component-builder-suit' to generated package's tools. | ||
* Remove CSSLint tooling from modules. | ||
|
||
=== 0.2.0 (November 13, 2013) | ||
### 0.2.0 (November 13, 2013) | ||
|
||
* Add 'suit-test' to generated package's dev dependencies. | ||
* Switch to using Component(1) for development. | ||
|
||
=== 0.1.1 (October 19, 2013) | ||
### 0.1.1 (October 19, 2013) | ||
|
||
* Fix the generated README's description placeholder. | ||
* Add 'adjoining-classes' and 'compatible-vendor-prefixes' to CSS Lint ignores. | ||
|
||
=== 0.1.0 (August 23, 2013) | ||
### 0.1.0 (August 23, 2013) | ||
|
||
* Initial release. |
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
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 +1,5 @@ | ||
=== HEAD | ||
# HEAD | ||
|
||
### v0.0.0 (MM/DD/YYYY) | ||
|
||
* Initial public release. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
{ | ||
"name": "suit-<%= modulePackageName %>", | ||
"name": "suitcss-<%= modulePackageName %>", | ||
"description": "", | ||
"version": "0.0.0", | ||
"main": "<%= moduleFileName %>", | ||
"author": "", | ||
"main": "lib/<%= moduleFileName %>", | ||
"ignore": [ | ||
"build", | ||
"components", | ||
"test", | ||
".*", | ||
"CHANGELOG.md", | ||
"component.json", | ||
"package.json", | ||
"test.html" | ||
"test", | ||
"build", | ||
"components" | ||
], | ||
"keywords": [ | ||
"browser", | ||
"css-components", | ||
"<%= modulePackageName %>", | ||
"suitcss", | ||
"style" | ||
] | ||
} |
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,11 +1,10 @@ | ||
{ | ||
"name": "<%= modulePackageName %>", | ||
"name": "suitcss-<%= modulePackageName %>", | ||
"repo": "suitcss/<%= modulePackageName %>", | ||
"version": "0.0.0", | ||
"styles": ["<%= moduleFileName %>"], | ||
"dependencies": {}, | ||
"development": { | ||
"suitcss/components-test": "0.1.1" | ||
}, | ||
"styles": [ | ||
"lib/<%= moduleFileName %>" | ||
], | ||
"author": "", | ||
"license": "MIT" | ||
} |
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,5 +1,2 @@ | ||
/** @define <%= _.classify(moduleName) %> */ | ||
@import "./lib/<%= moduleName %>.css"; | ||
|
||
.<%= _.classify(moduleName) %> { | ||
|
||
} |
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,5 @@ | ||
/** @define <%= _.classify(moduleName) %>; 'use strict' */ | ||
|
||
.<%= _.classify(moduleName) %> { | ||
|
||
} |
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
5 changes: 2 additions & 3 deletions
5
...enerator-suit/lib/templates/app/test.html → ...or-suit/lib/templates/app/test/index.html
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@import "suitcss-components-test"; | ||
@import "../index.css"; |
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