Skip to content

Commit 3acc848

Browse files
Updated distribution to version 1.9.2
1 parent 8a1d48c commit 3acc848

9 files changed

Lines changed: 113 additions & 66 deletions

File tree

components/accordion.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* # Semantic UI - 1.9.1
2+
* # Semantic UI - 1.9.2
33
* https://github.com/Semantic-Org/Semantic-UI
44
* http://www.semantic-ui.com/
55
*

components/accordion.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/accordion.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.js

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
var
2+
where = 'client' // Adds files only to the client
3+
;
4+
5+
Package.describe({
6+
name : 'semantic:ui-css',
7+
summary : 'Semantic UI - CSS Release of Semantic UI',
8+
version : '1.9.2',
9+
git : 'git://github.com/Semantic-Org/Semantic-UI-CSS.git',
10+
});
11+
12+
Package.onUse(function(api) {
13+
14+
var
15+
fs = require('fs'),
16+
path = require('path'),
17+
files,
18+
walk
19+
;
20+
21+
// recursive sync walk
22+
walk = function(dir) {
23+
var
24+
dir = dir || __dirname,
25+
list = fs.readdirSync(dir),
26+
files = []
27+
;
28+
list.forEach(function(file) {
29+
var
30+
filePath = path.join(dir, file),
31+
stat = fs.statSync(filePath)
32+
;
33+
if(stat && stat.isDirectory() && file !== 'node_modules') {
34+
files = files.concat(walk(filePath));
35+
}
36+
else {
37+
files.push(filePath);
38+
}
39+
})
40+
return files
41+
}
42+
files = walk();
43+
44+
api.versionsFrom('1.0');
45+
api.addFiles(files, 'clent');
46+
47+
});

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name" : "semantic-ui-css",
3-
"version" : "1.9.1",
4-
"title" : "Semantic UI",
5-
"description" : "CSS Only distribution of Semantic UI",
6-
"homepage" : "http://www.semantic-ui.com",
7-
"author" : "Jack Lukic <jack@semantic-ui.com>",
8-
"license" : "MIT",
2+
"name": "semantic-ui-css",
3+
"version": "1.9.2",
4+
"title": "Semantic UI",
5+
"description": "CSS Only distribution of Semantic UI",
6+
"homepage": "http://www.semantic-ui.com",
7+
"author": "Jack Lukic <jack@semantic-ui.com>",
8+
"license": "MIT",
99
"repository": {
10-
"type" : "git",
11-
"url" : "git://github.com/Semantic-Org/Semantic-UI-CSS.git"
10+
"type": "git",
11+
"url": "git://github.com/Semantic-Org/Semantic-UI-CSS.git"
1212
},
1313
"bugs": {
14-
"url" : "https://github.com/Semantic-Org/Semantic-UI/issues"
14+
"url": "https://github.com/Semantic-Org/Semantic-UI/issues"
1515
},
1616
"dependencies": {
17-
"jquery" : "x.*"
17+
"jquery": "x.*"
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)