Skip to content

Commit

Permalink
update rollup plugin, 14.14.0rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermountain committed Jul 31, 2024
1 parent 15d4e39 commit dfcced2
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ While all _Major_ releases should be reviewed, our only _large_ releases are **v
- **[change]** - typescript export update #1104
- **[update]** - eslint config format
- **[update]** - github actions
- **[update]** - deps
- **[update]** - dependencies

#### 14.13.0 [Apr 2024]

Expand Down
21 changes: 11 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"eslint-plugin-regexp": "2.6.0",
"nlp-corpus": "4.4.0",
"rollup": "4.19.1",
"rollup-plugin-filesize-check": "^0.0.2",
"rollup-plugin-filesize-check": "1.2.0",
"shelljs": "0.8.5",
"tap-dancer": "0.3.4",
"tape": "5.8.1"
Expand Down
10 changes: 5 additions & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default [
{
input: 'src/three.js',
output: [{ file: 'builds/compromise.js', format: 'umd', name: 'nlp' }],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 277, warn: 15 })],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 277, warn: 30 })],
},

// === One ==
Expand All @@ -28,24 +28,24 @@ export default [
{
input: 'src/two.js',
output: [{ file: 'builds/two/compromise-two.cjs', format: 'umd', name: 'nlp' }],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 226, warn: 15 })],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 226, warn: 30 })],
},
{
input: 'src/two.js',
output: [{ file: 'builds/two/compromise-two.mjs', format: 'esm' }],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 226, warn: 15 })],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 226, warn: 30 })],
},

// === Three ==
{
input: 'src/three.js',
output: [{ file: 'builds/three/compromise-three.cjs', format: 'umd', name: 'nlp' }],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 277, warn: 15 })],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 277, warn: 30 })],
},
{
input: 'src/three.js',
output: [{ file: 'builds/three/compromise-three.mjs', format: 'esm' }],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 277, warn: 15 })],
plugins: [nodeResolve(), terser(opts), sizeCheck({ expect: 277, warn: 30 })],
},

]

0 comments on commit dfcced2

Please sign in to comment.