Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
- do not include 'normalize.css' in build, as it does not play well w…
Browse files Browse the repository at this point in the history
…ith bootstrap

- added npm helper scripts
  • Loading branch information
martinhecher committed Nov 28, 2016
1 parent 0578474 commit a6acbcf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bundle.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var defaultConfig = {
moduleNameJS: 'RedsiftCore',
mapsDest: '.',
externalMappings: {},
useNormalizeCSS: true
useNormalizeCSS: false
}

var bundleConfig = {
Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redsift/ui-rs-core",
"version": "0.8.9",
"version": "0.8.10",
"description": "Common CSS styles and Javascript functionality for RedsiftUI.",
"keywords": [
"redsift-ui",
Expand All @@ -19,11 +19,13 @@
"bezier-easing": "*"
},
"scripts": {
"start": "gulp",
"build": "node ./node_modules/@redsift/redsift-bundler/bin/bundle.js -c ./bundle.config.js",
"start": "npm run build && gulp",
"build": "npm run clean && node ./node_modules/@redsift/redsift-bundler/bin/bundle.js -c ./bundle.config.js",
"clean": "rm -rf dist/*",
"pretest": "npm outdated",
"test": "echo \"No test specified\" && exit 0",
"prepublish": "npm run build"
"prepublish": "npm run build",
"postversion": "git push --tags origin HEAD"
},
"devDependencies": {
"@redsift/redsift-bundler": "^0.5.2",
Expand Down
4 changes: 3 additions & 1 deletion src/styles/common/icons.import.styl
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,11 @@
}

.-rs-icon-question {
width: 30px;
height: 70px;
background-image: url('https://static.redsift.io/assets/ui-rs-core/icons/-rs-icon-question.svg');
background-position: 50% 50%;
background-size: 30px;
background-size: 15px;
background-repeat: no-repeat;
opacity: 0.7;
}
Expand Down

0 comments on commit a6acbcf

Please sign in to comment.