@becollective/utils 1.9.2 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/bundle.js +6 -20741
  2. package/package.json +1 -1
  3. package/rollup.config.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@becollective/utils",
3
- "version": "1.9.2",
3
+ "version": "1.10.0",
4
4
  "description": "Common utilities",
5
5
  "main": "bundle.js",
6
6
  "scripts": {
package/rollup.config.js CHANGED
@@ -10,13 +10,14 @@ export default {
10
10
  file: 'bundle.js',
11
11
  format: 'cjs',
12
12
  },
13
+ external:['jest','has-flag',/node_modules/],
13
14
  plugins: [
14
15
  json(),
15
16
  commonjs(),
16
17
  typescript(),
17
18
  resolve(),
18
19
  babel({
19
- exclude: 'node_modules/**', // only transpile our source code
20
+ exclude: ['node_modules/**', 'tests/**'], // only transpile our source code
20
21
  babelrc: false,
21
22
  presets: ['@babel/preset-env'],
22
23
  }),