34de4ba6dc
* Adds support form FormulateError form errors * Adds support for form-errors prop Also includes tests for both named-form-errors as well, form-errors prop, positioning form errors with the <FormulateErrors /> component, and allowing multiple <FormulateErrors /> * Adds form error support, error handling, and supporting tests * Remove unused util functions * Adds german localization locales/de.js (#14) * Create de.js * Added startsWith and endsWith * adds build process for localization support, removes dist * Adds danish localization * fixes bug that resulted in validation failing if run more than once Credit to @luan-nk-nguyen for discovering the bug * Moves locales to vue-formulate-i18n * Adds dist files for locales * Adds vue-formulate-i18n 1.0.1 * Uses i18n 1.0.3 * Build files * Fixes #19 * Update src/locales/README.md Co-Authored-By: Andrew Boyd <andrew@wearebraid.com> * changes v-html to v-text for error message output credit to @skix123 for the bug report! Co-authored-by: Andrew Boyd <andrew@wearebraid.com>
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import resolve from '@rollup/plugin-node-resolve'
|
|
import commonjs from '@rollup/plugin-commonjs' // Convert CommonJS modules to ES6
|
|
import buble from '@rollup/plugin-buble' // Transpile/polyfill with reasonable browser support
|
|
import vue from 'rollup-plugin-vue' // Handle .vue SFC files
|
|
import internal from 'rollup-plugin-internal'
|
|
import { terser } from 'rollup-plugin-terser'
|
|
|
|
export default {
|
|
input: 'src/Formulate.js', // Path relative to package.json
|
|
output: {
|
|
name: 'VueFormulate',
|
|
exports: 'default',
|
|
format: 'iife',
|
|
globals: {
|
|
'is-plain-object': 'isPlainObject',
|
|
'nanoid/non-secure': 'nanoid',
|
|
'is-url': 'isUrl',
|
|
'@braid/vue-formulate-i18n': 'VueFormulateI18n'
|
|
}
|
|
},
|
|
plugins: [
|
|
resolve({
|
|
browser: true,
|
|
preferBuiltins: false
|
|
}),
|
|
commonjs(),
|
|
internal(['is-plain-object', 'nanoid/non-secure', 'is-url', '@braid/vue-formulate-i18n']),
|
|
vue({
|
|
css: true, // Dynamically inject css as a <style> tag
|
|
compileTemplate: true // Explicitly convert template to render function
|
|
}),
|
|
buble({
|
|
objectAssign: 'Object.assign'
|
|
}), // Transpile to ES5,
|
|
terser()
|
|
]
|
|
}
|