We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f2f6b6 commit e495b78Copy full SHA for e495b78
package.json
@@ -37,7 +37,10 @@
37
},
38
"files": [
39
"src",
40
- "dist"
+ "./dist",
41
+ "./CHANGELOG",
42
+ "./README.md",
43
+ "./README_pt_BR.md"
44
],
45
"publishConfig": {
46
"access": "public",
tool/rollup.config.js
@@ -1,7 +1,7 @@
1
/* eslint-disable */
2
import cjs from '@rollup/plugin-commonjs';
3
import { nodeResolve } from '@rollup/plugin-node-resolve';
4
-import packageJson from '../package.json' assert {type: "json"};;
+import packageJson from '../package.json' with { type: "json" };
5
6
const {dependencies} = packageJson;
7
const plugins = [nodeResolve(), cjs()];
0 commit comments