Skip to content

Commit

Permalink
Prepare Release v1.3.1 (#345)
Browse files Browse the repository at this point in the history
* strip `!default` from variables files
  • Loading branch information
giladgray authored Dec 10, 2016
1 parent 9d8c635 commit 497a03e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/docs/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -68021,7 +68021,7 @@
module.exports = [
{
"name": "@blueprintjs/core",
"version": "1.3.0"
"version": "1.3.1"
},
{
"name": "@blueprintjs/datetime",
Expand All @@ -68038,7 +68038,7 @@
/***/ function(module, exports) {

module.exports = [
"1.3.0"
"1.3.1"
];

/***/ },
Expand Down
2 changes: 1 addition & 1 deletion gulp/sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ module.exports = (gulp, plugins, blueprint) => {
.pipe(plugins.concat("variables.scss"))
// package the variables list for consumption -- no imports or functions
.pipe(plugins.stripCssComments())
.pipe(plugins.replace(/\n{3,}/g, "\n\n"))
.pipe(plugins.replace(" !default", ""))
.pipe(plugins.replace(/(@import|\/\/).*\n+/g, ""))
.pipe(plugins.replace(/border-shadow\((.+)\)/g, "0 0 0 1px rgba($black, $1)"))
.pipe(plugins.replace(/\n{3,}/g, "\n\n"))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blueprint",
"version": "1.3.0",
"version": "1.3.1",
"private": true,
"description": "A React UI toolkit for the web.",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blueprintjs/core",
"version": "1.3.0",
"version": "1.3.1",
"description": "Core styles & components",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@blueprintjs/docs",
"version": "1.3.0",
"version": "1.3.1",
"description": "Blueprint Docs",
"main": "dist/index.html",
"private": true,
"dependencies": {
"@blueprintjs/core": "^1.3.0",
"@blueprintjs/core": "^1.3.1",
"@blueprintjs/datetime": "^1.3.0",
"@blueprintjs/table": "^1.2.0",
"chroma-js": "1.1.1",
Expand Down

1 comment on commit 497a03e

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prepare Release v1.3.1 (#345)

Preview: docs
Coverage: core | datetime

Please sign in to comment.