Skip to content

Commit a5b6d4f

Browse files
author
Alain Dumesny
authored
Merge pull request #1078 from adumesny/develop
npm package fix to exclude more temporary content
2 parents a1f1087 + c9a0d77 commit a5b6d4f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*.log
22
*.tgz
3+
*.zip
34
.npmrc
45
bower_components
56
coverage

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ yarn.lock
1111
.jscsrc
1212
.npmignore
1313
.travis.yml
14+
.eslint*
1415
Gruntfile.js
1516
ISSUE_TEMPLATE.md
1617
PULL_REQUEST_TEMPLATE.md
@@ -22,6 +23,7 @@ protractor.conf.js
2223
## From .gitignore:
2324
*.log
2425
*.tgz
26+
*.zip
2527
bower_components
2628
coverage/
2729
node_modules/

doc/CHANGES.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Change log
2626

2727
## v0.5.4-dev (upcoming changes)
2828

29-
- min files include rev number/license
29+
- min files include rev number/license [#1075](https://github.com/gridstack/gridstack.js/pull/1075)
30+
- npm package fix to exclude more temporary content
3031

3132
## v0.5.4 (2019-11-26)
3233

@@ -36,7 +37,7 @@ Change log
3637
- add `jquery-ui.js` (and min.js) as minimal subset we need (55k vs 248k), which is now part of `gridstack.all.js`. Include individual parts if you need your own lib instead of all.js
3738
([#1064](https://github.com/gridstack/gridstack.js/pull/1064)).
3839
- changed jquery dependency to lowest we can use (>=1.8) ([#629](https://github.com/gridstack/gridstack.js/issues/629)).
39-
- add advance demo from web site ([#1073](https://github.com/gridstack/gridstack.js/issues/1073)).
40+
- add advance demo from web site ([#1073](https://github.com/gridstack/gridstack.js/pull/1073)).
4041

4142
## v0.5.3 (2019-11-20)
4243

src/gridstack.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ interface GridStack {
265265
* (Experimental) Modify number of columns in the grid. Will attempt to update existing widgets
266266
* to conform to new number of columns. Requires `gridstack-extra.css` or `gridstack-extra.min.css`.
267267
* @param column - Integer between 1 and 12.
268-
* @param doNotPropagate if true existing widgets will not be updated.
268+
* @param doNotPropagate if true existing widgets will not be updated (optional)
269269
*/
270-
setColumn(column: number, doNotPropagate: boolean): void;
270+
setColumn(column: number, doNotPropagate ? : boolean): void;
271271

272272
/**
273273
* Toggle the grid static state. Also toggle the grid-stack-static class.

0 commit comments

Comments
 (0)