@rolster/rollup 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/index.js +1 -14
  2. package/package.json +1 -2
package/index.js CHANGED
@@ -1,4 +1,3 @@
1
- import typescript from '@rollup/plugin-typescript';
2
1
  import commonjs from '@rollup/plugin-commonjs';
3
2
  import resolve from '@rollup/plugin-node-resolve';
4
3
 
@@ -26,19 +25,7 @@ function rollupOutput(entryFile, path) {
26
25
  export default function rolster(options) {
27
26
  const { entryFiles, packages, path, plugins } = options;
28
27
 
29
- const rolsterTypescript = {
30
- tsconfig: './tsconfig.app.json',
31
- declaration: true,
32
- declarationDir: 'dist',
33
- include: ['node_modules/@rolster/types/index.d.ts']
34
- };
35
-
36
- const rolsterPlugins = [
37
- commonjs(),
38
- resolve(),
39
- typescript({ ...rolsterTypescript, ...options.typescript }),
40
- ...(plugins || [])
41
- ];
28
+ const rolsterPlugins = [commonjs(), resolve(), ...(plugins || [])];
42
29
 
43
30
  return entryFiles.map((entryFile) => {
44
31
  return {
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "@rolster/rollup",
3
- "version": "1.0.2",
4
- "type": "module",
3
+ "version": "1.0.3",
5
4
  "description": "Package containing the basic definitions for handling data types.",
6
5
  "license": "MIT",
7
6
  "module": "index.js",