Skip to content

Commit 5555b6f

Browse files
committed
release: v0.1.2
1 parent c68be89 commit 5555b6f

File tree

7 files changed

+39
-46
lines changed

7 files changed

+39
-46
lines changed

dist/three-dots.css

Lines changed: 7 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/three-dots.css.map

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

dist/three-dots.min.css

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

dist/three-dots.min.css.map

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

docs/css/three-dots.css

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

package.json

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,38 @@
11
{
22
"name": "three-dots",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "CSS loading animation made by single element.",
55
"main": "dist/three-dots.css",
6+
"files": [
7+
"dist",
8+
"sass",
9+
"less"
10+
],
611
"homepage": "https://github.com/nzbin/three-dots#readme",
712
"repository": {
813
"type": "git",
914
"url": "git+https://github.com/nzbin/three-dots.git"
1015
},
11-
"author": "nzbin <nzb329@163.com>",
16+
"author": "nzbin",
1217
"license": "MIT",
1318
"bugs": {
1419
"url": "https://github.com/nzbin/three-dots/issues"
1520
},
1621
"keywords": [
1722
"three-dots",
18-
"css-framework",
19-
"sass"
23+
"loading-animations",
24+
"single-element-css-spinners",
25+
"sass",
26+
"less"
2027
],
2128
"devDependencies": {
2229
"autoprefixer": "^6.7.7",
2330
"cpy-cli": "^1.0.1",
24-
"node-sass": "^4.9.0",
31+
"node-sass": "^4.7.2",
2532
"npm-run-all": "^2.3.0",
2633
"onchange": "^2.5.0",
27-
"postcss-cli": "^2.6.0",
34+
"postcss-cli": "^4.1.1",
35+
"postcss-header": "^1.0.0",
2836
"rimraf": "^2.6.2",
2937
"stylelint": "^9.2.1",
3038
"stylelint-config-recommended-scss": "^3.2.0",
@@ -36,12 +44,13 @@
3644
},
3745
"scripts": {
3846
"start": "run-p build watch",
39-
"build": "run-s clean sass autoprefixer",
47+
"build": "run-s clean sass sassmin postcss",
4048
"clean": "rimraf dist",
41-
"sass": "node-sass --output-style expanded sass/three-dots.scss dist/three-dots.css && node-sass --output-style compressed sass/three-dots.scss dist/three-dots.min.css",
49+
"sass": "node-sass --output-style expanded sass/three-dots.scss dist/three-dots.css",
50+
"sassmin": "node-sass --output-style compressed sass/three-dots.scss dist/three-dots.min.css",
4251
"copy": "cpy dist/*.css !dist/*.min.css docs/css",
43-
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
44-
"watch": "onchange sass -- run-s sass copy",
52+
"postcss": "postcss -r dist/*.css --map",
53+
"watch": "onchange sass --run-s sass copy",
4554
"lint": "stylelint --syntax scss \"sass/**/*.scss\" --fix"
4655
}
4756
}

sass/three-dots.scss

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
/**
2-
*
3-
* three-dots.css v0.1.1
4-
*
5-
* https://nzbin.github.io/three-dots/
6-
*
7-
* Copyright (c) 2018 nzbin
8-
*
9-
* Released under the MIT license
10-
*
11-
*/
12-
1+
// Three-Dots
132
@import "variables";
143
@import "mixins";
154
@import "dot-elastic";

0 commit comments

Comments
 (0)