Explorar el Código

Revert file move

Put `index.ts` back to `lib` for a simpler npmignore.
tags/0.3.0
TheoryOfNekomata hace 4 años
padre
commit
837084335d
Se han modificado 3 ficheros con 18 adiciones y 19 borrados
  1. +1
    -2
      .npmignore
  2. +0
    -17
      index.ts
  3. +17
    -0
      lib/index.ts

+ 1
- 2
.npmignore Ver fichero

@@ -16,5 +16,4 @@ rollup.config.js
tsconfig.json
yarn.lock
**/*.test.d.ts
index.ts

*.log

+ 0
- 17
index.ts Ver fichero

@@ -1,17 +0,0 @@
import Button from './lib/components/Button/Button'
import Checkbox from './lib/components/Checkbox/Checkbox'
import Icon from './lib/components/Icon/Icon'
import RadioButton from './lib/components/RadioButton/RadioButton'
import Select from './lib/components/Select/Select'
import Slider from './lib/components/Slider/Slider'
import TextInput from './lib/components/TextInput/TextInput'

export {
Button,
Checkbox,
Icon,
RadioButton,
Select,
Slider,
TextInput,
}

+ 17
- 0
lib/index.ts Ver fichero

@@ -0,0 +1,17 @@
import Button from './components/Button/Button'
import Checkbox from './components/Checkbox/Checkbox'
import Icon from './components/Icon/Icon'
import RadioButton from './components/RadioButton/RadioButton'
import Select from './components/Select/Select'
import Slider from './components/Slider/Slider'
import TextInput from './components/TextInput/TextInput'

export {
Button,
Checkbox,
Icon,
RadioButton,
Select,
Slider,
TextInput,
}

Cargando…
Cancelar
Guardar