Browse Source

release 3.1.2

tags/3.1.2^0
Ulrich-Matthias Schäfer 2 years ago
parent
commit
cbefb3aab4
3 changed files with 12453 additions and 705 deletions
  1. 4
    0
      CHANGELOG.md
  2. 12427
    683
      package-lock.json
  3. 22
    22
      package.json

+ 4
- 0
CHANGELOG.md View File

@@ -10,8 +10,11 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
## [3.1.2]

### Fixed
- fixed several type issues (#1249, #1233, #1231, #1223, #1215)
- fixed `css()` returning camelCased properties even though they were specified in kebap-case
- fixed `ObjectBag` loosing information when calling `valueOf()` (Numbers lost its unit)
- fixed `parents()` (#1235)
- fixed `nodeOrNew()` to work in object tags as well (#1219)

## [3.1.1]

@@ -911,6 +914,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:


<!-- Headings above link to the releases listed here -->
[3.1.2]: https://github.com/svgdotjs/svg.js/releases/tag/3.1.2
[3.1.1]: https://github.com/svgdotjs/svg.js/releases/tag/3.1.1
[3.1.0]: https://github.com/svgdotjs/svg.js/releases/tag/3.1.0
[3.0.16]: https://github.com/svgdotjs/svg.js/releases/tag/3.0.16

+ 12427
- 683
package-lock.json
File diff suppressed because it is too large
View File


+ 22
- 22
package.json View File

@@ -1,6 +1,6 @@
{
"name": "@svgdotjs/svg.js",
"version": "3.1.1",
"version": "3.1.2",
"description": "A lightweight library for manipulating and animating SVG.",
"url": "https://svgjs.dev/",
"homepage": "https://svgjs.dev/",
@@ -77,41 +77,41 @@
"checkTests": "node spec/checkForAllTests.js"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/core": "^7.16.12",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-node-resolve": "^13.1.3",
"@target/custom-event-polyfill": "github:Adobe-Marketing-Cloud/custom-event-polyfill",
"babel-eslint": "^10.1.0",
"core-js": "^3.19.0",
"core-js": "^3.20.3",
"coveralls": "^3.1.1",
"eslint": "^8.1.0",
"eslint": "^8.7.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-sort-class-members": "^1.12.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sort-class-members": "^1.14.1",
"eslint-plugin-standard": "^5.0.0",
"esm": "^3.2.25",
"http-server": "^14.0.0",
"jasmine": "^3.10.0",
"jasmine-core": "^3.10.1",
"karma": "^6.3.6",
"http-server": "^14.1.0",
"jasmine": "^4.0.2",
"jasmine-core": "^4.0.0",
"karma": "^6.3.12",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.1",
"karma-coverage": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"karma-sauce-launcher": "^4.3.6",
"rollup": "^2.58.3",
"rollup-plugin-filesize": "^9.1.1",
"rollup": "^2.66.1",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.4",
"yargs": "^17.2.1",
"svgdom": "^0.1.8",
"babel-plugin-polyfill-corejs3": "^0.2.5"
"typescript": "^4.5.5",
"yargs": "^17.3.1",
"svgdom": "^0.1.10",
"babel-plugin-polyfill-corejs3": "^0.5.1"
},
"browserslist": "last 2 version and > 0.25% and not op_mini all and not ie 11"
}

Loading…
Cancel
Save