Skip to content

Commit

Permalink
patch: simplify singleton (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Jun 6, 2020
1 parent cff3dbc commit febca2e
Show file tree
Hide file tree
Showing 40 changed files with 283 additions and 320 deletions.
4 changes: 2 additions & 2 deletions config/builds/vest.js
Expand Up @@ -41,10 +41,10 @@ const buildConfig = ({ format = DEFAULT_FORMAT, min = false } = {}) => ({
]
.filter(Boolean)
.join('.'),
name: PACKAGE_NAME_VEST,
format,
name: PACKAGE_NAME_VEST,
},
plugins: min ? [...PLUGINS, terser()] : PLUGINS,
});

export default [buildConfig({ min: true }), buildConfig()];
export default [buildConfig(), buildConfig({ min: true })];
2 changes: 2 additions & 0 deletions config/eslint/spellCheckerSkip.js
Expand Up @@ -31,4 +31,6 @@ module.exports = [
'utf8',
'writeable',
'lt',
'iife',
'namespace',
];
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -38,7 +38,8 @@
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0",
"semver": "^7.3.2"
"semver": "^7.3.2",
"vest": "2.0.0-next-e063c9"
},
"scripts": {
"build": "rollup -c ./config/builds/index.js",
Expand Down
17 changes: 8 additions & 9 deletions packages/n4s/dist/enforce.js

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

2 changes: 1 addition & 1 deletion packages/n4s/dist/enforce.min.js

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

0 comments on commit febca2e

Please sign in to comment.