Skip to content

Commit 7c69f69

Browse files
committed
up
1 parent dd7f83b commit 7c69f69

File tree

8 files changed

+89
-47
lines changed

8 files changed

+89
-47
lines changed

.github/workflows/up.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# The MIT License (MIT)
2+
#
3+
# Copyright (c) 2015-2025 Yegor Bugayenko
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included
13+
# in all copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
# SOFTWARE.
22+
---
23+
name: up
24+
'on':
25+
push:
26+
jobs:
27+
up:
28+
runs-on: ubuntu-24.04
29+
steps:
30+
- uses: actions/checkout@v4
31+
- run: |-
32+
git fetch --tags --force && \
33+
latest=$(git tag --sort=creatordate | tail -1) && \
34+
sed -E -i "s/tacit-css@[0-9]+\.[0-9]+\.[0-9]+/tacit-css@${latest}/g" README.md
35+
- uses: peter-evans/create-pull-request@v7
36+
with:
37+
commit-message: 'new version in README'
38+
delete-branch: true
39+
title: 'New version in README'
40+
assignees: yegor256
41+
branch: up
42+
base: master

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ dist/
88
tacit.min.css
99
tacit.min.css.map
1010
package-lock.json
11-

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ Simply add this to your HTML:
2525
<!DOCTYPE html>
2626
<html>
2727
<head>
28-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/yegor256/tacit@gh-pages/tacit-css.min.css"/>
28+
<link rel="stylesheet"
29+
href="https://cdn.jsdelivr.net/npm/tacit-css@0.0.0/dist/tacit-css.min.css"/>
2930
</head>
3031
</html>
3132
```

bower.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"name": "tacit",
3-
"version": "VERSION",
4-
"homepage": "https://github.com/yegor256/tacit",
52
"authors": [
63
"Yegor Bugayenko <yegor256@gmail.com>"
74
],
85
"description": "CSS Framework for Dummies",
9-
"main": "index.html",
10-
"moduleType": [
11-
"globals"
12-
],
13-
"keywords": [
14-
"css"
15-
],
16-
"license": "MIT",
6+
"homepage": "https://github.com/yegor256/tacit",
177
"ignore": [
188
"**/.*",
199
"node_modules",
2010
"bower_components",
2111
"test",
2212
"tests"
23-
]
13+
],
14+
"keywords": [
15+
"css"
16+
],
17+
"license": "MIT",
18+
"main": "index.html",
19+
"moduleType": [
20+
"globals"
21+
],
22+
"name": "tacit",
23+
"version": "VERSION"
2424
}

package.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
{
2-
"name": "tacit-css",
3-
"version": "0.0.0",
4-
"copyright": "2015",
5-
"description": "CSS Framework for Dummies",
6-
"main": "dist/tacit-css.css",
7-
"scripts": {
8-
"test": "grunt --no-color",
9-
"rultor": "grunt rultor --no-color",
10-
"dev": "grunt dev"
11-
},
12-
"repository": {
13-
"type": "git",
14-
"url": "https://github.com/yegor256/tacit.git"
15-
},
16-
"keywords": [
17-
"css"
18-
],
192
"author": "Yegor Bugayenko",
20-
"license": "MIT",
213
"bugs": {
224
"url": "https://github.com/yegor256/tacit/issues"
235
},
24-
"files": [
25-
"dist",
26-
"Gruntfile.js",
27-
"LICENSE"
28-
],
29-
"homepage": "https://github.com/yegor256/tacit",
6+
"copyright": "2015",
7+
"description": "CSS Framework for Dummies",
308
"devDependencies": {
9+
"css-validator": "0.11.0",
10+
"glob": "11.0.0",
3111
"grunt": "^1.4.3",
3212
"grunt-contrib-watch": "1.1.0",
3313
"grunt-css-purge": "1.1.0",
3414
"grunt-sass": "3.1.0",
3515
"grunt-sass-lint": "0.2.4",
3616
"load-grunt-tasks": "5.1.0",
37-
"css-validator": "0.11.0",
38-
"glob": "11.0.0",
39-
"npm": "10.9.1",
4017
"node-sass": "9.0.0",
18+
"npm": "10.9.1",
4119
"path": "0.12.7"
42-
}
20+
},
21+
"files": [
22+
"dist",
23+
"Gruntfile.js",
24+
"LICENSE"
25+
],
26+
"homepage": "https://github.com/yegor256/tacit",
27+
"keywords": [
28+
"css"
29+
],
30+
"license": "MIT",
31+
"main": "dist/tacit-css.css",
32+
"name": "tacit-css",
33+
"repository": {
34+
"type": "git",
35+
"url": "https://github.com/yegor256/tacit.git"
36+
},
37+
"scripts": {
38+
"dev": "grunt dev",
39+
"rultor": "grunt rultor --no-color",
40+
"test": "grunt --no-color"
41+
},
42+
"version": "0.0.0"
4343
}

scss/_common.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
*[hidden] {
2424
display: none;
25-
}
25+
}

tacit_logo.png

-222 Bytes
Loading

tacit_logo.svg

Lines changed: 4 additions & 4 deletions
Loading

0 commit comments

Comments
 (0)