Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 1d17d7a

Browse files
author
Irfan Maulana
committed
add .travis.yml
1 parent d9fe34e commit 1d17d7a

10 files changed

+82
-9594
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,4 @@ typings/
5959
demo/component-mixin.js
6060
demo/dist/
6161
dist/
62+
rollup.config.bak.js

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: node_js
2+
node_js: '8'
3+
branches:
4+
only:
5+
- master
6+
script:
7+
- npm run dist
8+
deploy:
9+
provider: pages
10+
skip-cleanup: true
11+
github-token: $GITHUB_TOKEN
12+
keep-history: true
13+
local-dir: demo/dist
14+
verbose: true
15+
on:
16+
branch: master

README.md

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

33
> Vue Icon Set Components from Ionic Team
44
5-
[![License](https://img.shields.io/github/license/mazipan/vue-ionicons.svg?maxAge=3600)](https://github.com/mazipan/vue-ionicons) [![version](https://img.shields.io/npm/v/vue-ionicons.svg?maxAge=60)](https://www.npmjs.com/package/vue-ionicons) ![downloads](https://img.shields.io/npm/dt/vue-ionicons.svg?maxAge=3600)
5+
[![License](https://img.shields.io/github/license/mazipan/vue-ionicons.svg?maxAge=3600)](https://github.com/mazipan/vue-ionicons) [![Travis](https://img.shields.io/travis/mazipan/vue-ionicons.svg)](https://travis-ci.org/mazipan/vue-ionicons) [![version](https://img.shields.io/npm/v/vue-ionicons.svg?maxAge=60)](https://www.npmjs.com/package/vue-ionicons) ![downloads](https://img.shields.io/npm/dt/vue-ionicons.svg?maxAge=3600)
66

77
Design icons sourced from the
88
[Ionicons](https://github.com/ionic-team/ionicons) project.

dist.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ generateTemplateData().then((templateData) => {
182182
commonGenerateFile(iosTemplateData, 'template-js.mst', 'dist/ionicons-ios.js'),
183183
commonGenerateFile(mdTemplateData, 'template-js.mst', 'dist/ionicons-md.js'),
184184
commonGenerateFile(logoTemplateData, 'template-js.mst', 'dist/ionicons-logo.js'),
185-
commonGenerateFile(templateData, 'template-rollup.mst', 'rollup.config.js'),
186185
commonGenerateFile(templateData, 'template-app-mixin.mst', 'demo/component-mixin.js'),
187186
generateVersionFile()
188187
]).then(() => {

package.json

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
{
22
"name": "vue-ionicons",
3-
"version": "3.0.3",
3+
"version": "3.0.4",
44
"license": "MIT",
55
"author": "Irfan Maulana (https://github.com/mazipan/)",
66
"description": "Vue Icon Set Components from Ionic Team",
77
"scripts": {
88
"dev": "rimraf demo/dist && cross-env NODE_ENV=development ./node_modules/.bin/poi --serve",
9-
"build": "rimraf demo/dist && cross-env NODE_ENV=production ./node_modules/.bin/poi --prod",
10-
"dist-lib": "rimraf dist/js && cross-env NODE_ENV=production ./node_modules/.bin/rollup -c",
11-
"dist": "node dist.js && npm run bili-lib",
12-
"deploy": "node ./gh-publish.js",
13-
"bili-lib": "rimraf dist/js && ./node_modules/.bin/bili --config bili.config.js"
9+
"build-demo": "rimraf demo/dist && cross-env NODE_ENV=production ./node_modules/.bin/poi --prod",
10+
"build-lib": "rimraf dist/js && ./node_modules/.bin/bili --config bili.config.js",
11+
"dist": "node dist.js && npm run build-lib && npm run build-demo",
12+
"deploy": "node ./gh-publish.js"
1413
},
1514
"files": [
1615
"dist/**",
@@ -32,10 +31,10 @@
3231
"@babel/preset-env": "^7.2.3",
3332
"babel-core": "7.0.0-bridge.0",
3433
"bili": "^3.4.2",
35-
"chalk": "^2.4.1",
34+
"chalk": "^2.4.2",
3635
"cross-env": "^5.2.0",
3736
"css-loader": "^2.1.0",
38-
"eslint": "^5.11.1",
37+
"eslint": "^5.12.0",
3938
"eslint-plugin-html": "^5.0.0",
4039
"eslint-plugin-vue": "5.1.0",
4140
"file-loader": "^3.0.1",
@@ -45,22 +44,13 @@
4544
"ora": "^3.0.0",
4645
"poi": "12.2.14",
4746
"rimraf": "^2.6.3",
48-
"rollup": "^1.0.1",
49-
"rollup-plugin-buble": "^0.19.6",
50-
"rollup-plugin-commonjs": "^9.2.0",
51-
"rollup-plugin-css-only": "^0.4.0",
52-
"rollup-plugin-eslint": "^5.0.0",
53-
"rollup-plugin-filesize": "^6.0.0",
54-
"rollup-plugin-multi-entry": "^2.1.0",
55-
"rollup-plugin-node-resolve": "^4.0.0",
56-
"rollup-plugin-postcss": "^1.6.3",
5747
"rollup-plugin-vue": "^4.3.2",
5848
"sass-loader": "^7.1.0",
5949
"shelljs": "^0.8.3",
6050
"style-loader": "0.23.1",
6151
"svgo": "^1.1.1",
6252
"vue": "^2.5.21",
63-
"vue-loader": "^15.4.2",
53+
"vue-loader": "^15.5.0",
6454
"vue-template-compiler": "^2.5.21",
6555
"workbox-webpack-plugin": "^3.6.3"
6656
},
File renamed without changes.

0 commit comments

Comments
 (0)