Skip to content

Commit 4e49346

Browse files
Release commit for 0.9.0-commonjs [ci skip]
0 parents  commit 4e49346

File tree

1,467 files changed

+235656
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,467 files changed

+235656
-0
lines changed

.gitignore

Lines changed: 319 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,319 @@
1+
### Project files ###
2+
3+
# Only used for release server authentication
4+
/.npmrc
5+
6+
# React Storybook
7+
storybook/
8+
storybook-based-tests/
9+
10+
# Publishing and dist build
11+
.tmp*
12+
13+
# For build server. A copy of itself from master is pulled down in order to publish itself.
14+
design-system-react
15+
16+
# Allow custom pre-commit
17+
scripts/pre-commit.sh
18+
19+
# Visual diff images. These are the images that compare differences
20+
# in the current and previous capture
21+
__diff_output__
22+
23+
# --- MACHINE GENERATED BELOW THIS LINE ---
24+
25+
### Node ###
26+
# Logs
27+
logs
28+
*.log
29+
npm-debug.log*
30+
yarn-debug.log*
31+
yarn-error.log*
32+
33+
# Runtime data
34+
pids
35+
*.pid
36+
*.seed
37+
*.pid.lock
38+
39+
# Directory for instrumented libs generated by jscoverage/JSCover
40+
lib-cov
41+
42+
# Coverage directory used by tools like istanbul
43+
coverage
44+
45+
# nyc test coverage
46+
.nyc_output
47+
48+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
49+
.grunt
50+
51+
# Bower dependency directory (https://bower.io/)
52+
bower_components
53+
54+
# node-waf configuration
55+
.lock-wscript
56+
57+
# Compiled binary addons (http://nodejs.org/api/addons.html)
58+
build/Release
59+
60+
# Dependency directories
61+
node_modules/
62+
jspm_packages/
63+
64+
# Typescript v1 declaration files
65+
typings/
66+
67+
# Optional npm cache directory
68+
.npm
69+
70+
# Optional eslint cache
71+
.eslintcache
72+
73+
# Optional REPL history
74+
.node_repl_history
75+
76+
# Output of 'npm pack'
77+
*.tgz
78+
79+
# Yarn Integrity file
80+
.yarn-integrity
81+
82+
# dotenv environment variables file
83+
.env
84+
85+
### Code ###
86+
# Visual Studio Code - https://code.visualstudio.com/
87+
.settings/
88+
.vscode/
89+
tsconfig.json
90+
jsconfig.json
91+
92+
### Emacs ###
93+
# -*- mode: gitignore; -*-
94+
*~
95+
\#*\#
96+
/.emacs.desktop
97+
/.emacs.desktop.lock
98+
*.elc
99+
auto-save-list
100+
tramp
101+
.\#*
102+
103+
# Org-mode
104+
.org-id-locations
105+
*_archive
106+
107+
# flymake-mode
108+
*_flymake.*
109+
110+
# eshell files
111+
/eshell/history
112+
/eshell/lastdir
113+
114+
# elpa packages
115+
/elpa/
116+
117+
# reftex files
118+
*.rel
119+
120+
# AUCTeX auto folder
121+
/auto/
122+
123+
# cask packages
124+
.cask/
125+
/dist/
126+
127+
# Flycheck
128+
flycheck_*.el
129+
130+
# server auth directory
131+
/server/
132+
133+
# projectiles files
134+
.projectile
135+
projectile-bookmarks.eld
136+
137+
# directory configuration
138+
.dir-locals.el
139+
140+
# saveplace
141+
places
142+
143+
# url cache
144+
url/cache/
145+
146+
# cedet
147+
ede-projects.el
148+
149+
# smex
150+
smex-items
151+
152+
# company-statistics
153+
company-statistics-cache.el
154+
155+
# anaconda-mode
156+
anaconda-mode/
157+
158+
### macOS ###
159+
*.DS_Store
160+
.AppleDouble
161+
.LSOverride
162+
163+
# Removed due to Icon component not working on NPM.
164+
# Icon must end with two \r
165+
# Icon
166+
167+
# Thumbnails
168+
._*
169+
170+
# Files that might appear in the root of a volume
171+
.DocumentRevisions-V100
172+
.fseventsd
173+
.Spotlight-V100
174+
.TemporaryItems
175+
.Trashes
176+
.VolumeIcon.icns
177+
.com.apple.timemachine.donotpresent
178+
179+
# Directories potentially created on remote AFP share
180+
.AppleDB
181+
.AppleDesktop
182+
Network Trash Folder
183+
Temporary Items
184+
.apdisk
185+
186+
### SublimeText ###
187+
# cache files for sublime text
188+
*.tmlanguage.cache
189+
*.tmPreferences.cache
190+
*.stTheme.cache
191+
192+
# workspace files are user-specific
193+
*.sublime-workspace
194+
195+
# project files should be checked into the repository, unless a significant
196+
# proportion of contributors will probably not be using SublimeText
197+
# *.sublime-project
198+
199+
# sftp configuration file
200+
sftp-config.json
201+
202+
# Package control specific files
203+
Package Control.last-run
204+
Package Control.ca-list
205+
Package Control.ca-bundle
206+
Package Control.system-ca-bundle
207+
Package Control.cache/
208+
Package Control.ca-certs/
209+
Package Control.merged-ca-bundle
210+
Package Control.user-ca-bundle
211+
oscrypto-ca-bundle.crt
212+
bh_unicode_properties.cache
213+
214+
# Sublime-github package stores a github token in this file
215+
# https://packagecontrol.io/packages/sublime-github
216+
GitHub.sublime-settings
217+
218+
### Vim ###
219+
# swap
220+
[._]*.s[a-v][a-z]
221+
[._]*.sw[a-p]
222+
[._]s[a-v][a-z]
223+
[._]sw[a-p]
224+
# session
225+
Session.vim
226+
# temporary
227+
.netrwhist
228+
# auto-generated tag files
229+
tags
230+
231+
### WebStorm ###
232+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
233+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
234+
235+
# User-specific stuff:
236+
.idea/**/workspace.xml
237+
.idea/**/tasks.xml
238+
.idea/dictionaries
239+
240+
# Sensitive or high-churn files:
241+
.idea/**/dataSources/
242+
.idea/**/dataSources.ids
243+
.idea/**/dataSources.xml
244+
.idea/**/dataSources.local.xml
245+
.idea/**/sqlDataSources.xml
246+
.idea/**/dynamic.xml
247+
.idea/**/uiDesigner.xml
248+
249+
# Gradle:
250+
.idea/**/gradle.xml
251+
.idea/**/libraries
252+
253+
# CMake
254+
cmake-build-debug/
255+
256+
# Mongo Explorer plugin:
257+
.idea/**/mongoSettings.xml
258+
259+
## File-based project format:
260+
*.iws
261+
262+
## Plugin-specific files:
263+
264+
# IntelliJ
265+
/out/
266+
267+
# mpeltonen/sbt-idea plugin
268+
.idea_modules/
269+
270+
# JIRA plugin
271+
atlassian-ide-plugin.xml
272+
273+
# Cursive Clojure plugin
274+
.idea/replstate.xml
275+
276+
# Ruby plugin and RubyMine
277+
/.rakeTasks
278+
279+
# Crashlytics plugin (for Android Studio and IntelliJ)
280+
com_crashlytics_export_strings.xml
281+
crashlytics.properties
282+
crashlytics-build.properties
283+
fabric.properties
284+
285+
### WebStorm Patch ###
286+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
287+
288+
# *.iml
289+
# modules.xml
290+
# .idea/misc.xml
291+
# *.ipr
292+
293+
# Sonarlint plugin
294+
.idea/sonarlint
295+
296+
### Windows ###
297+
# Windows thumbnail cache files
298+
Thumbs.db
299+
ehthumbs.db
300+
ehthumbs_vista.db
301+
302+
# Folder config file
303+
Desktop.ini
304+
305+
# Recycle Bin used on file shares
306+
$RECYCLE.BIN/
307+
308+
# Windows Installer files
309+
*.cab
310+
*.msi
311+
*.msm
312+
*.msp
313+
314+
# Windows shortcuts
315+
*.lnk
316+
317+
# Intellij IDE
318+
.idea/*
319+
*.iml

LICENSE.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Copyright (c) 2015-present, Salesforce.com, Inc.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
* Redistributions of source code must retain the above copyright
7+
notice, this list of conditions and the following disclaimer.
8+
* Redistributions in binary form must reproduce the above copyright
9+
notice, this list of conditions and the following disclaimer in the
10+
documentation and/or other materials provided with the distribution.
11+
* Neither the name of the Salesforce.com nor the
12+
names of its contributors may be used to endorse or promote products
13+
derived from this software without specific prior written permission.
14+
15+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18+
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
19+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)