@edusites/bancos-brasil 1.0.1 → 1.0.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edusites/bancos-brasil",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Biblioteca JavaScript para renderizar ícones SVG de bancos brasileiros",
5
5
  "author": {
6
6
  "name": "Eduardo Sites",
@@ -33,6 +33,7 @@
33
33
  "files": [
34
34
  "src/index.js",
35
35
  "src/icones.js",
36
+ "src/SvgBanco.js",
36
37
  "src/SvgBanco.vue",
37
38
  "icons",
38
39
  "README.md",
@@ -0,0 +1 @@
1
+ export { default } from './SvgBanco.vue'
package/src/index.js CHANGED
@@ -133,6 +133,6 @@ export function obterPreset(nome) {
133
133
  return PRESETS[nomeNormalizado] || null
134
134
  }
135
135
 
136
- export { default as SvgBanco } from './SvgBanco.vue'
136
+ export { default as SvgBanco } from './SvgBanco.js'
137
137
 
138
138
  export default svgBanco