This repository has been archived by the owner on Jul 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(build): setup carbon-themes for semantic-release
- Loading branch information
1 parent
b628d1f
commit 096e543
Showing
2 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
language: node_js | ||
cache: | ||
directories: | ||
- node_modules | ||
notifications: | ||
email: false | ||
node_js: | ||
- '6' | ||
before_script: | ||
- npm prune | ||
after_success: | ||
- npm run semantic-release | ||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
{ | ||
"name": "carbon-themes", | ||
"version": "0.0.1", | ||
"description": "A collectino of thetmes for use with Carbon Components", | ||
"version": "0.0.0-development", | ||
"description": "A collection of thetmes for use with Carbon Components", | ||
"main": "index.js", | ||
"repository": "[email protected]:carbon-design-system/carbon-themes.git", | ||
"author": "chrisdhanaraj <[email protected]>", | ||
"license": "Apache 2.0" | ||
"license": "Apache 2.0", | ||
"scripts": { | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post" | ||
}, | ||
"devDependencies": { | ||
"semantic-release": "^6.3.2" | ||
} | ||
} |