Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Jul 16, 2024
1 parent 98317f3 commit f95bf0f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@
"require": "./dist/index.cjs.js",
"types": "./dist/types/interface.d.ts"
},
"./components": {
"import": "./components/index.js",
"types": "./components/index.d.ts"
},
"./components/*": {
"import": "./components/*",
"types": "./components/*"
},
"./ion-accordion-group": {
"import": "./components/ion-accordion-group.js",
"types": "./components/ion-accordion-group.d.ts"
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/scripts/build-vetur.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const DocsJson = require('@ionic/core/dist/docs.json');
const DocsJson = require('@ionic/core/docs.json');
const fs = require('fs');
const { paramCase } = require('change-case');

Expand Down
2 changes: 1 addition & 1 deletion packages/vue/scripts/build-web-types.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fs = require("fs");
const docs = require("@ionic/core/dist/docs.json");
const docs = require("@ionic/core/docs.json");
const { pascalCase } = require("change-case");

const components = [];
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/scripts/copy-overlays.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const DocsJson = require('@ionic/core/dist/docs.json');
const DocsJson = require('@ionic/core/docs.json');
const fs = require('fs');

function generateOverlays() {
Expand Down

0 comments on commit f95bf0f

Please sign in to comment.