@rollup/plugin-buble
Advanced tools
Comparing version 0.20.0 to 0.21.0
# rollup-plugin-buble changelog | ||
## 0.21.0 | ||
_2019-12-21_ | ||
- feat(buble): use types from @types/buble (#54) | ||
## 0.20.0 | ||
- Republish under `@rollup` scope | ||
## 0.19.8 | ||
@@ -4,0 +14,0 @@ |
import { Plugin } from 'rollup'; | ||
import { TransformOptions } from 'buble'; | ||
interface TransformOptions { | ||
arrow?: boolean; | ||
classes?: boolean; | ||
collections?: boolean; | ||
computedProperty?: boolean; | ||
conciseMethodProperty?: boolean; | ||
constLoop?: boolean; | ||
dangerousForOf?: boolean; | ||
dangerousTaggedTemplateString?: boolean; | ||
defaultParameter?: boolean; | ||
destructuring?: boolean; | ||
forOf?: boolean; | ||
generator?: boolean; | ||
letConst?: boolean; | ||
modules?: boolean; | ||
numericLiteral?: boolean; | ||
parameterDestructuring?: boolean; | ||
reservedProperties?: boolean; | ||
spreadRest?: boolean; | ||
stickyRegExp?: boolean; | ||
templateString?: boolean; | ||
unicodeRegExp?: boolean; | ||
} | ||
interface RollupBubleOptions { | ||
export interface RollupBubleOptions extends TransformOptions { | ||
/** | ||
@@ -37,6 +14,2 @@ * A minimatch pattern, or array of patterns, of files that should be | ||
exclude?: string | RegExp | ReadonlyArray<string | RegExp> | null; | ||
/** | ||
* Buble TransformOptions | ||
*/ | ||
transforms?: TransformOptions; | ||
} | ||
@@ -43,0 +16,0 @@ |
{ | ||
"name": "@rollup/plugin-buble", | ||
"version": "0.20.0", | ||
"version": "0.21.0", | ||
"publishConfig": { | ||
@@ -17,4 +17,3 @@ "access": "public" | ||
"ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov", | ||
"ci:coverage:submit": "curl -s https://codecov.io/bash | bash -s - -F beep", | ||
"ci:lint": "pnpm run build && pnpm run lint && pnpm run security", | ||
"ci:lint": "pnpm run build && pnpm run lint", | ||
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", | ||
@@ -27,7 +26,6 @@ "ci:test": "pnpm run test -- --verbose && pnpm run test:ts", | ||
"prebuild": "del-cli dist", | ||
"prepare": "npm run build", | ||
"prepublishOnly": "npm run lint && npm run test && npm run test:ts", | ||
"pretest": "npm run build", | ||
"security": "echo 'pnpm needs `npm audit` support'", | ||
"test": "ava test/test.js", | ||
"prepare": "pnpm run build", | ||
"prepublishOnly": "pnpm run lint && pnpm run test && pnpm run test:ts", | ||
"pretest": "pnpm run build", | ||
"test": "ava", | ||
"test:ts": "tsc index.d.ts test/types.ts --noEmit" | ||
@@ -53,10 +51,11 @@ }, | ||
"dependencies": { | ||
"@types/buble": "^0.19.2", | ||
"buble": "^0.19.8", | ||
"rollup-pluginutils": "^2.6.0", | ||
"typescript": "^3.4.3" | ||
"rollup-pluginutils": "^2.8.2" | ||
}, | ||
"devDependencies": { | ||
"del-cli": "^3.0.0", | ||
"rollup": "^1.20.0", | ||
"source-map": "^0.7.3" | ||
"rollup": "^1.27.0", | ||
"source-map": "^0.7.3", | ||
"typescript": "^3.7.2" | ||
}, | ||
@@ -63,0 +62,0 @@ "ava": { |
@@ -1,10 +0,7 @@ | ||
[cover]: https://codecov.io/gh/rollup/plugins/buble/branch/master/graph/badge.svg | ||
[cover-url]: https://codecov.io/gh/rollup/plugins | ||
[npm]: https://img.shields.io/npm/v/@rollup/plugin-buble | ||
[npm-url]: https://www.npmjs.com/package/@rollup/plugin-buble | ||
[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-buble | ||
[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-buble | ||
[tests]: https://img.shields.io/circleci/project/github/rollup/plugins.svg | ||
[tests-url]: https://circleci.com/gh/rollup/plugins | ||
[![tests][tests]][tests-url] | ||
[![cover][cover]][cover-url] | ||
[![npm][npm]][npm-url] | ||
[![size][size]][size-url] | ||
@@ -73,4 +70,4 @@ [![libera manifesto](https://img.shields.io/badge/libera-manifesto-lightgrey.svg)](https://liberamanifesto.com) | ||
[CONTRIBUTING](./.github/CONTRIBUTING.md) | ||
[CONTRIBUTING](/.github/CONTRIBUTING.md) | ||
[LICENSE (Mozilla Public License)](./LICENSE) | ||
[LICENSE (MIT)](/LICENSE) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8723
4
83
73
+ Added@types/buble@^0.19.2
+ Added@types/buble@0.19.2(transitive)
- Removedtypescript@^3.4.3
- Removedtypescript@3.9.10(transitive)
Updatedrollup-pluginutils@^2.8.2