-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CJL-50 Build library as UMD, CJS and ESM
CJL-50 Build files and source maps properly CJL-50 Add .npmignore and ignore all source files CJL-50 Update changelog and readme CJL-50 Updated usage instructions CJL-50 remove browser value from package.json CJL-50 Rename UMD bundle to prevent conflicts with index CJL-50 Build modules properly \o/ CJL-50 Package with flat file structure CJL-50 remove unnecessary try/catch blocks CJL-50 Validate presence of TAG env var before publishing CJL-50 catch spawn STDERR CJL-50 capture stdout 0.11.10 CJL-50 Include cx in named dependencies CJL-50 Move rollup babel plugins to build file CJL-50 Replace jsx extension with js in transpiled files CJL-50 Give different module and file names to output files CJL-50 move classnames from devdeps to deps CJL-50 move proptypes from devdeps to deps CJL-50 Add peerDependencies and dependencies to dist/package.json 0.11.16
- Loading branch information
Eder Sanchez
committed
Mar 13, 2018
1 parent
662554c
commit 2b2f160
Showing
10 changed files
with
1,474 additions
and
203 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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
{ | ||
"presets": [ | ||
"env", | ||
[ | ||
"env", | ||
{ | ||
"modules": false | ||
} | ||
], | ||
"stage-0", | ||
"react" | ||
], | ||
"plugins": [ | ||
"transform-runtime", | ||
"transform-react-remove-prop-types" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -32,4 +32,5 @@ $RECYCLE.BIN/ | |
build/ | ||
node_modules/ | ||
dist/ | ||
dist-es6/ | ||
dist-es/ | ||
gumgum-common-js-*.tgz |
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,40 @@ | ||
## IDEs ### | ||
*.sublime-workspace | ||
.tag* | ||
.tern-project | ||
|
||
### OSX ### | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
### Windows ### | ||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# App specific | ||
.out/ | ||
build/ | ||
node_modules/ | ||
components/ | ||
constants/ | ||
tools/ | ||
Jenkinsfile | ||
_ops | ||
_stories/ | ||
yarn.lock |
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,4 @@ | ||
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. | ||
version: v1.10.2 | ||
ignore: {} | ||
patch: {} |
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,140 +1,161 @@ | ||
# GumGum Common JS Changelog | ||
|
||
## 0.11.0 (3-5-18) | ||
|
||
###### Added | ||
|
||
* [CJL-50] | ||
Add individual ES and CommonJS modules to dist directory | ||
Keeps index.js with whole library for retrocompatibility | ||
Create UMD build for loading library into browsers | ||
Update installation instructions | ||
|
||
## 0.10.0 (2-23-18) | ||
|
||
###### Added | ||
|
||
- [CJL-48] - Utility class documentation and examples | ||
- [CJL-43] - Add Prettier to the project | ||
* [CJL-48] - Utility class documentation and examples | ||
* [CJL-43] - Add Prettier to the project | ||
|
||
###### Fixed | ||
|
||
- Close Button on ModalHeader | ||
* Close Button on ModalHeader | ||
|
||
## 0.9.3 (1-11-18) | ||
|
||
###### Fixed | ||
|
||
- Fix styles on MultiSelect | ||
* Fix styles on MultiSelect | ||
|
||
## 0.9.2 (1-4-18) | ||
|
||
###### Fixed | ||
|
||
- Fix full width layout on layout container (again) | ||
- Remove console.log on AccordionItem | ||
* Fix full width layout on layout container (again) | ||
* Remove console.log on AccordionItem | ||
|
||
## 0.9.0 (1-3-18) | ||
|
||
###### Added | ||
|
||
- [CJL-42] - Add textarea component | ||
* [CJL-42] - Add textarea component | ||
|
||
###### Changed | ||
|
||
- Add ...otherProps to Button | ||
* Add ...otherProps to Button | ||
|
||
###### Fixed | ||
|
||
- Fix full width layout on layout container | ||
* Fix full width layout on layout container | ||
|
||
## 0.8.2 (12-18-17) | ||
|
||
###### Changed | ||
|
||
- Update README for adding library to project via internal npm hosted files | ||
* Update README for adding library to project via internal npm hosted files | ||
|
||
## 0.8.1 (12-15-17) | ||
|
||
###### Fixed | ||
|
||
- Add prop for react-modal's latest version that was throwing a warning | ||
* Add prop for react-modal's latest version that was throwing a warning | ||
|
||
## 0.8.0 (12-15-17) | ||
|
||
###### Changed | ||
|
||
- [CJL-36] - Update libraries | ||
- Add size and additional context options to Select | ||
- Improve Avatar menu to accept a callback for clicking on an option instead of using React Router | ||
* [CJL-36] - Update libraries | ||
* Add size and additional context options to Select | ||
* Improve Avatar menu to accept a callback for clicking on an option instead of using React Router | ||
|
||
## 0.7.6 (12-15-17) | ||
|
||
###### Added | ||
|
||
- Add searching on keys, multiple terms, and custom filter functions to SearchMultiSelect | ||
* Add searching on keys, multiple terms, and custom filter functions to SearchMultiSelect | ||
|
||
## 0.7.5 (12-6-17) | ||
|
||
###### Added | ||
|
||
- Add onChange to SearchMultiSelect | ||
* Add onChange to SearchMultiSelect | ||
|
||
## 0.7.1-0.7.4 (12-1-17) | ||
|
||
###### Fixed | ||
|
||
- Various import fixes | ||
* Various import fixes | ||
|
||
## 0.7.0 (11-29-17) | ||
###### Added | ||
|
||
- [CJL-35] - CHANGELOG.md and CONTRIBUTING.md | ||
- [CJL-23] - Circular Thumbnail | ||
- [CJL-1] - Tooltip | ||
- [CJL-32] - Accordion | ||
###### Added | ||
|
||
* [CJL-35] - CHANGELOG.md and CONTRIBUTING.md | ||
* [CJL-23] - Circular Thumbnail | ||
* [CJL-1] - Tooltip | ||
* [CJL-32] - Accordion | ||
|
||
## 0.6.2 (11-10-17) | ||
###### Changed | ||
|
||
- [CJL-30] - Add small option to SearchMultiselect | ||
###### Changed | ||
|
||
* [CJL-30] - Add small option to SearchMultiselect | ||
|
||
## 0.6.1 (10-25-17) | ||
###### Fixed | ||
|
||
- [CJL-21] - Update SearchMultiselect to accomodate options passed in after component is mounted | ||
###### Fixed | ||
|
||
* [CJL-21] - Update SearchMultiselect to accomodate options passed in after component is mounted | ||
|
||
## 0.6.0 (8-22-17) | ||
|
||
###### Added | ||
|
||
- [CJL-29] - Login | ||
* [CJL-29] - Login | ||
|
||
###### Changed | ||
|
||
- [CJL-10] - Prop-types npm package | ||
- [CJL-13] - Migrate Storybook to version 3.x.x | ||
- [CJL-24] - Readme addon | ||
|
||
* [CJL-10] - Prop-types npm package | ||
* [CJL-13] - Migrate Storybook to version 3.x.x | ||
* [CJL-24] - Readme addon | ||
|
||
## 0.5.0 (7-7-17) | ||
###### Added | ||
|
||
- [CJL-20] - Pagination | ||
###### Added | ||
|
||
* [CJL-20] - Pagination | ||
|
||
## 0.4.0 (6-25-17) | ||
###### Added | ||
|
||
- [CJL-3] - SearchMultiSelect | ||
###### Added | ||
|
||
* [CJL-3] - SearchMultiSelect | ||
|
||
## 0.3.0 (6-22-17) | ||
###### Added | ||
|
||
- [CJL-6] - Single Select | ||
- [CJL-8] - Checkbox | ||
###### Added | ||
|
||
* [CJL-6] - Single Select | ||
* [CJL-8] - Checkbox | ||
|
||
## 0.2.0 (6-13-17) | ||
|
||
###### Added | ||
|
||
- [CJL-7] - Circular Number | ||
- [CJL-5] - Jenkins | ||
- [CJL-12] - Input Group | ||
- [CJL-16] - Trend | ||
* [CJL-7] - Circular Number | ||
* [CJL-5] - Jenkins | ||
* [CJL-12] - Input Group | ||
* [CJL-16] - Trend | ||
|
||
###### Fixed | ||
|
||
- [CJL-9] - Tag errors | ||
|
||
* [CJL-9] - Tag errors | ||
|
||
## 0.1.0 (6-15-17) | ||
|
||
###### Added | ||
|
||
- [CJL-11] - Button Group | ||
- [CJL-18] - Layout | ||
- [CJL-15] - Import/Export | ||
- [CJL-17] - Modal | ||
* [CJL-11] - Button Group | ||
* [CJL-18] - Layout | ||
* [CJL-15] - Import/Export | ||
* [CJL-17] - Modal |
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
Oops, something went wrong.