Skip to content

Commit

Permalink
Update Gruntfile to remove errant brace after public map-type variabl…
Browse files Browse the repository at this point in the history
…e. Fix the .d.ts file.

Release version 0.15.1.
  • Loading branch information
teamdandelion committed Jun 5, 2014
1 parent 2634de8 commit 79270a1
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module.exports = function(grunt) {
path: "license_header.tmp",
},
public_member_vars: {
pattern: jsdoc + prefixMatch + "public " + "[^(;]*;",
pattern: jsdoc + prefixMatch + "public " + "[^(;{]*(\{[^}]*\})?;",
replacement: "",
path: "plottable.d.ts",
},
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "plottable",
"description": "A library for creating charts out of D3",
"version": "0.15.0",
"version": "0.15.1",
"main": ["plottable.js", "plottable.css"],
"license": "MIT",
"ignore": [
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": "plottable.js",
"version": "0.15.0",
"version": "0.15.1",
"description": "Build flexible, performant, interactive charts using D3",
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion plottable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,6 @@ declare module Plottable {
declare module Plottable {
module Axis {
class Axis extends Abstract.Component {
};
static _DEFAULT_TICK_SIZE: number;
/**
* Creates an Axis.
Expand Down
2 changes: 1 addition & 1 deletion plottable.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
Plottable 0.15.0 (https://github.com/palantir/plottable)
Plottable 0.15.1 (https://github.com/palantir/plottable)
Copyright 2014 Palantir Technologies
Licensed under MIT (https://github.com/palantir/plottable/blob/master/LICENSE)
*/
Expand Down
Binary file modified plottable.zip
Binary file not shown.

0 comments on commit 79270a1

Please sign in to comment.