Skip to content
This repository was archived by the owner on Apr 14, 2023. It is now read-only.

Commit d00a1ea

Browse files
v1.2.0
1 parent d8e550d commit d00a1ea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+7225
-225
lines changed

.travis.yml

+40-21
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,47 @@ script: gulp
1212
notifications:
1313
email: false
1414
after_success:
15-
- export GIT_TAG=v1.0.$TRAVIS_BUILD_NUMBER
16-
- echo -n $GIT_TAG > v0.1.$TRAVIS_BUILD_NUMBER
15+
- export GIT_TAG=vPACKAGE_VERSION
16+
- echo -n $GIT_TAG > vPACKAGE_VERSION
17+
# - export GIT_TAG=v1.0.$TRAVIS_BUILD_NUMBER
18+
# - echo -n $GIT_TAG > v0.1.$TRAVIS_BUILD_NUMBER
1719
- git commit -m "Set build VERSION number to "$GIT_TAG
18-
- git tag $GIT_TAG -a -m "Generated tag from TravisCI build $TRAVIS_BUILD_NUMBER"
19-
- git push --quiet https://[email protected]/reedia/skeletonic $GIT_TAG > /dev/null
20+
- git tag $GIT_TAG -a -m "Generated tag $GIT_TAG from TravisCI build $TRAVIS_BUILD_NUMBER"
21+
# - git tag $GIT_TAG -a -m "Generated tag from TravisCI build $TRAVIS_BUILD_NUMBER"
22+
- git push --quiet https://[email protected]/sebastienrousseau/skeletonic $GIT_TAG > /dev/null
2023
2>&1
21-
- echo "${TRAVIS_BRANCH}"
22-
- echo "${TRAVIS_PULL_REQUEST}"
23-
- echo "${TRAVIS_SECURE_ENV_VARS}"
24-
- echo "${TRAVIS_COMMIT}"
25-
- echo ${TRAVIS_BUILD_NUMBER}
26-
- echo ${TRAVIS_REPO_SLUG}
27-
- echo ${GIT_TAG}
24+
- echo "TRAVIS_BRANCH = ${TRAVIS_BRANCH}"
25+
- echo "TRAVIS_PULL_REQUEST = ${TRAVIS_PULL_REQUEST}"
26+
- echo "TRAVIS_SECURE_ENV_VARS = ${TRAVIS_SECURE_ENV_VARS}"
27+
- echo "TRAVIS_COMMIT = ${TRAVIS_COMMIT}"
28+
- echo "TRAVIS_BUILD_NUMBER = ${TRAVIS_BUILD_NUMBER}"
29+
- echo "PACKAGE_VERSION = ${PACKAGE_VERSION}"
30+
- echo "TRAVIS_REPO_SLUG = ${TRAVIS_REPO_SLUG}"
31+
- echo "GIT_TAG = ${GIT_TAG}"
2832

2933
before_deploy:
30-
- echo "Ready to deploy Skeletonic $GIT_TAG"
34+
- echo "Ready to deploy a new Skeletonic version $GIT_TAG"
35+
36+
before_install:
37+
- npm install -g npm
38+
39+
# const
40+
- export PACKAGE_NAME=$(node -p "require('./package.json').name")
41+
- export PACKAGE_VERSION=$(node -p "require('./package.json').version")
42+
- export NODE_VERSION=$(node --version)
43+
- export NPM_VERSION=$(npm --version)
44+
45+
# logging
46+
- npm --version || echo npm not installed
47+
- node --version || echo node not installed
48+
- echo "package version $PACKAGE_VERSION"
49+
50+
# Only deploy if the version number has changed
51+
- |
52+
if git diff --unified=0 $TRAVIS_COMMIT_RANGE package.json | grep version ; then
53+
export VERSION_CHANGED="yes"
54+
fi
55+
- openssl aes-256-cbc -K $encrypted_0da74458a2a7_key -iv $encrypted_0da74458a2a7_iv -in id_rsa.enc -out id_rsa -d
3156

3257
branches:
3358
only:
@@ -36,28 +61,22 @@ branches:
3661

3762
deploy:
3863
- provider: releases
64+
tag: latest
3965
api_key:
4066
secure: "lf4UWgL+++4pd1HsLY3dvTX5YRqmPrOV72E7+lcVk8KJRVThd6a36LO30P5EuNWtshHGofHLjE0wonoLwiy2PlDodJk5PpCah1eJzVOpn45ImcEWcBhV9RXMSq1OGcb9yPr4UjJz3mMOTaIv9Xls52g/DxyXcX34nhIQwJ62L7t0lgK7WArAG5BHhGw4GxwhBrVaPnkwqcKF+i/unO4Juyg1D8KEK28XzENaUzt18rlUJ51sN0XNKgo8mHtTKkiwQDQyMxhEKVtT0h8uJbb+gECtvPkug69UQUonCN/fMr0p0u27AHqWL5gSuyLDuS1Ou6xOIJitYEXNqbW4ANbyeIxusI3xSwPTwf/whKCEgvD/FsjmRZ42WONinERwjjGJy9xACBvJD7tcinorog3rx/96qsBcuI4qohNJ51smuVipLdRgRDuxqmgMPu5M6OQ61kPSbY6RS9Dzccli30vZ2TS6NgWO65ngcxgXYsWneTbENydGUx91o42jKvL0vQ4UHY709l432dovA0n0knfXQDw407zY+Xgsk4ci4GXF8YXB9gvp/ipdtH752lStfAoFZy2lZy72T3clXcE1+2QwrTJy2KSrifPESU9LG7WTivh9FIAlARCYyJevJM86cAaa0wBW2AYZOd9bIXbhiWflE03YNKjKX+lzaXekDC6Ardk="
4167
file_glob: true
4268
file: dist/*
4369
skip_cleanup: true
4470
name: Skeletonic $GIT_TAG
4571
body: "<strong>Change Log:</strong><br />Release $GIT_TAG created on $(date +'%d/%m/%Y')
46-
at $(date +'%T')<br />Skeletonic is a lightweight, intuitive and ultra-responsive CSS framework designed for any platform, browser or device."
72+
at $(date +'%T')<br />Skeletonic $GIT_TAG is a lightweight, intuitive and ultra-responsive CSS framework designed for any platform, browser or device."
4773
on:
4874
# all_branches: true
49-
# tags: true
75+
tags: true
5076
repo: sebastienrousseau/skeletonic
5177
- provider: npm
5278
email: $NPM_EMAIL
5379
api_key: $NPM_TOKEN
5480
on:
5581
branch: master
5682
condition: "$VERSION_CHANGED == 'yes'"
57-
before_install:
58-
# Only deploy if the version number has changed
59-
- |
60-
if git diff --unified=0 $TRAVIS_COMMIT_RANGE package.json | grep version ; then
61-
export VERSION_CHANGED="yes"
62-
fi
63-
- openssl aes-256-cbc -K $encrypted_0da74458a2a7_key -iv $encrypted_0da74458a2a7_iv -in id_rsa.enc -out id_rsa -d

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
<p align="center">Simply designed to fit your cascading web life.</p>
1212

13-
<p align="center"><strong>Version: 1.1.9</strong></p>
13+
<p align="center"><strong>Version: 1.2.0</strong></p>
1414

1515
<p align="center">
16-
<a href="https://github.com/sebastienrousseau/skeletonic/archive/v1.1.9.zip" class="button primary">Download</a>
16+
<a href="https://github.com/sebastienrousseau/skeletonic/archive/v1.2.0.zip" class="button primary">Download</a>
1717
</p>
1818

1919
[![NPM](https://nodei.co/npm/skeletonic.png)](https://nodei.co/npm/skeletonic/)
@@ -50,7 +50,7 @@ Skeletonic is constantly in development. Try it out now!
5050

5151
Several quick start options are available:
5252

53-
- [Download the latest release](https://github.com/sebastienrousseau/skeletonic/archive/v1.1.9.zip)
53+
- [Download the latest release](https://github.com/sebastienrousseau/skeletonic/archive/v1.2.0.zip)
5454
- Install with [Npm](https://www.npmjs.com/package/skeletonic) to get the pre-built CSS and sourcemaps. This is recommended when using Skeletonic for a typical web project: ```npm install skeletonic```
5555
- Install with [Yarn](https://yarnpkg.com/en/package/skeletonic) to get the pre-built CSS and sourcemaps. This is recommended when using Skeletonic for a typical web project: ```yarn add skeletonic```
5656
- Clone the main repository to get all source files including build scripts: `git clone https://github.com/sebastienrousseau/skeletonic.git`
@@ -62,7 +62,7 @@ Within the download you'll find all the source files, compiled and minified CSS
6262
You'll see something like this:
6363

6464
```
65-
skeletonic-1.1.9
65+
skeletonic-1.2.0
6666
├── skeletonic-animations.css
6767
├── skeletonic-animations.css.map
6868
├── skeletonic-animations.min.css
@@ -91,9 +91,9 @@ Please feel free to grab the latest:
9191

9292
```<link rel="stylesheet" type="text/css" href="https://unpkg.com/skeletonic/dist/skeletonic.min.css" />```
9393

94-
You can also specify a specific version as per below. The latest version as of today is 1.1.9.
94+
You can also specify a specific version as per below. The latest version as of today is 1.2.0.
9595

96-
```<link rel="stylesheet" type="text/css" href="https://unpkg.com/skeletonic@1.1.9/dist/skeletonic.min.css" />```
96+
```<link rel="stylesheet" type="text/css" href="https://unpkg.com/skeletonic@1.2.0/dist/skeletonic.min.css" />```
9797

9898
## Extend
9999

@@ -112,7 +112,7 @@ The following table lists alternate CDN locations where Skeletonic is hosted.
112112

113113
| CDN | URL | HTTPS | Combo |
114114
|---|---|---|---|
115-
| [unpkg](https://unpkg.com/) | https://unpkg.com/skeletonic@1.1.9/dist/skeletonic.min.css | Yes | No |
115+
| [unpkg](https://unpkg.com/) | https://unpkg.com/skeletonic@1.2.0/dist/skeletonic.min.css | Yes | No |
116116
| [jsDelivr](https://www.jsdelivr.com/) | https://cdn.jsdelivr.net/npm/skeletonic/dist/skeletonic.min.css | Yes | Yes |
117117

118118
## Versioning

dist/skeletonic-animations.css

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/skeletonic-colours.css

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/skeletonic-debug-mode.css

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/skeletonic-fonts.css

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/skeletonic-pattern.css

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/skeletonic.css

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/skeletonic.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/skeletonic.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "skeletonic",
3-
"version": "1.1.9",
3+
"version": "1.2.0",
44
"description": "A dead on, lightweight, responsive and modern CSS framework.",
55
"keywords": [
66
"skeletonic",

0 commit comments

Comments
 (0)