alytus-ff 0.1.7 → 0.1.9

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.
@@ -1,2 +1,2 @@
1
- export * from '../index'
2
- export {}
1
+ export * from './utils';
2
+ export * from './components';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "alytus-ff",
4
- "version": "0.1.7",
4
+ "version": "0.1.9",
5
5
  "description": "Frontend framework",
6
6
  "main": "src/index.ts",
7
7
  "module": "dist/index.es.js",
package/vite.config.ts CHANGED
@@ -6,7 +6,8 @@ export default defineConfig({
6
6
  plugins: [
7
7
  vue(),
8
8
  dts({
9
- //outputDir: 'dist/types', // Output directory for .d.ts files
9
+ // outputDir: 'dist/types', // Output directory for .d.ts files
10
+ outDir: 'dist/types', // Output directory for .d.ts files
10
11
  insertTypesEntry: true, // Generates an entry file for types
11
12
  copyDtsFiles: true, // Copies .d.ts files to the output directory
12
13
  })
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from './utils';
2
- export * from './components';
@@ -1 +0,0 @@
1
- export { default as PageTitle } from './Page/PageTitle.vue';
package/types/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- import "./styles/main.scss";
2
- export * from "./utils";
3
- export * from "./components";
File without changes
File without changes
File without changes
File without changes
File without changes