-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added configurable options #7
base: main
Are you sure you want to change the base?
Conversation
@@ -21,9 +21,6 @@ export default { | |||
external: [ | |||
...Object.keys(pkg.dependencies || {}) | |||
], | |||
alias: { | |||
'@/': path.resolve(__dirname, '/src/') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ts takes care of this
|
||
export default { | ||
input: 'src/index.ts', | ||
output: [ | ||
{ | ||
file: pkg.main, | ||
format: 'cjs', | ||
sourcemap: true | ||
sourcemap: true, | ||
exports: 'default' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rollup advised in the terminal so added itdocs
expect(wrapper.vm.$acl).toBeInstanceOf(ACL); | ||
}); | ||
|
||
it('should be able to set the directive names from the config', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this needs to be tested for the other 3 directives as well
There are also suggestions in there. |
feature
you can't customize accessor and directives
Added option to customise accessor and directives
closes Configurable naming for global accessor/directives #2