Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge upstream changes 1.0.0-rc.5 #1

Merged
merged 43 commits into from
Jan 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
24823d0
Upgrade gatsbyjs to v2
niklasvh Apr 6, 2019
c45ef09
ci: Improve CI pipeline (#1790)
niklasvh Apr 7, 2019
349bbf1
fix: enforce colorstop min 0 (#1743)
ahebrank Apr 7, 2019
3212184
docs: improve canvas size limit documentation (#1576)
jwallet Apr 7, 2019
5cbe5db
fix: prevent unhandled promise rejections for hidden frames (#1762)
earshinov Apr 7, 2019
2c018d1
fix: wrap .sheet.cssRules access in try...catch. (#1693)
PaulJThompson Apr 7, 2019
7ebef72
ci: automate changelog generation (#1792)
niklasvh Apr 7, 2019
44f3d79
build: update webpack and babel (#1793)
niklasvh Apr 7, 2019
029235a
chore(release): 1.0.0-rc.0
niklasvh Apr 7, 2019
238de79
docs: fix release date in changelog
niklasvh Apr 7, 2019
49f87fb
test: fix RefTestRenderer.js inclusion with karma
niklasvh Apr 7, 2019
7027900
fix: context scale for high resolution displays with foreignobjectren…
justinbmeyer Apr 7, 2019
397595a
fix: don't apply text shadows on elements (#1795)
niklasvh Apr 8, 2019
7775d3c
docs: remove invalid `async` option from docs (fix #1769) (#1796)
niklasvh Apr 8, 2019
a63cb3c
ci: add ios simulator tests (#1794)
niklasvh Apr 9, 2019
4e4a231
fix: safari data url taints (#1797)
niklasvh Apr 10, 2019
b894586
chore(release): 1.0.0-rc.1
niklasvh Apr 10, 2019
a7d8810
ci: refactor browser tests (#1804)
niklasvh Apr 11, 2019
cdc4ca8
test: include reftests previewer with docs website (#1799)
niklasvh Apr 13, 2019
4305824
docs: remove dead donation link (fix #1802)
niklasvh Apr 13, 2019
20a797c
docs: fix README documentation
niklasvh Apr 13, 2019
522a443
Typescript conversion (#1828)
niklasvh May 25, 2019
5f31b74
feat: box-shadow rendering (#1848)
niklasvh May 26, 2019
409674f
fix: multi token overflow #1850 (#1851)
niklasvh May 26, 2019
28dc05c
chore(release): 1.0.0-rc.2
niklasvh May 29, 2019
cae44a6
fix: typescript options type definition (#1861)
niklasvh May 30, 2019
cbaecdc
fix: stack exceeding for css tokenizer (#1862)
niklasvh May 30, 2019
86a650b
chore(release): 1.0.0-rc.3
niklasvh May 30, 2019
61f4819
feat: ignore unsupported image functions (#1873)
val1984 Jun 18, 2019
81dcf7b
fix: zero size iframe rendering (#1863)
garaboncias Jun 18, 2019
9a63797
docs: fix typo (#1864)
Jason-Cooke Jun 18, 2019
ee3ca35
add missing -ms-grid display property to support IE grid layouts (#1926)
dmolnar99 Sep 22, 2019
d4b5896
Update canvas-renderer.ts (#2004)
RickBetting Sep 22, 2019
eedb81e
fix: correctly render partial borders (fix #1920) (#2010)
niklasvh Sep 22, 2019
00555cf
fix: nested z-index ordering (#2011)
niklasvh Sep 22, 2019
7d3456b
fix: null backgroundColor option as transparent (#2012)
niklasvh Sep 22, 2019
99f105c
chore(release): 1.0.0-rc.4
niklasvh Sep 22, 2019
34b06d6
fix: correctly respect logging option (#2013)
niklasvh Sep 25, 2019
0764920
fix: using existing canvas option (#2017)
niklasvh Sep 26, 2019
3f59910
fix: safari pseudo element content parsing (#2018)
niklasvh Sep 27, 2019
8c04f94
chore(release): 1.0.0-rc.5
niklasvh Sep 27, 2019
e4d52a1
Fix error in server-side rendering (#2039)
Livven Nov 26, 2019
f139b51
fix: #1868 Clone node, Setting className for SVG element raises error…
niklasvh Nov 26, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"plugins": ["transform-object-rest-spread"],
"presets": ["es2015", "flow"]
"presets": [[
"@babel/preset-env",
{
"targets": {
"ie": "9"
}
}
], "@babel/preset-flow"],
"plugins": [
"add-module-exports"
]
}
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ insert_final_newline = true
indent_style = space
indent_size = 4

[{.travis.yml,package.json}]
[{azure-pipelines.yml,package.json, ci/*.yml}]
# The indent size used in the `package.json` file cannot be changed
# https://github.com/npm/npm/pull/3180#issuecomment-16336516
indent_size = 2
34 changes: 19 additions & 15 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
{
"parser": "babel-eslint",
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended",
],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"flowtype",
"@typescript-eslint",
"prettier"
],
"rules": {
"no-console": ["error", { "allow": ["warn", "error"] }],
"flowtype/boolean-style": [
2,
"boolean"
],
"flowtype/no-weak-types": 2,
"flowtype/delimiter-dangle": 2,
"prettier/prettier": ["error", {
"singleQuote": true,
"bracketSpacing": false,
"parser": "flow",
"tabWidth": 4,
"printWidth": 100
}]
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/class-name-casing": "off",
"prettier/prettier": "error"
}
}
7 changes: 0 additions & 7 deletions .flowconfig

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/dist
/tmp
/build
/nbproject/
image.jpg
Expand All @@ -15,3 +16,4 @@ npm-debug.log
debug.log
tests/reftests.js
*.log
.rpt2_cache
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ scripts/
src/
tests/
www/
tmp/
.github/
*.iml
.babelrc
Expand All @@ -13,6 +14,9 @@ www/
.npmignore
.eslintrc
.travis.yml
azure-pipelines.yml
karma.js
karma.conf.js
rollup.config.js
webpack.config.js
.rpt2_cache
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"trailingComma": "none",
"tabWidth": 4,
"bracketSpacing": false,
"singleQuote": true,
"printWidth": 120
}
57 changes: 0 additions & 57 deletions .travis.yml

This file was deleted.

Loading