Skip to content

Commit

Permalink
chore : update config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Mansourkira committed Mar 20, 2024
1 parent 7560c98 commit 08775c8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sikka/hajar",
"version": "1.1.67",
"version": "1.1.68",
"description": "Toolkit to create SaaS applications",
"author": "Sikka Software <[email protected]> (http://sikka.io)",
"license": "MIT",
Expand All @@ -24,7 +24,7 @@
"module": "dist/Hajar.esm.min.js",
"unpkg": "dist/Hajar.umd.min.js",
"files": [
"www/src",
"www/src/@sikka/hajar/core",
"dist/"
],
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const makeConfig = (env = "development") => {
let bundleSuffix = env === "production" ? "min." : "";

return {
input: "./www/src/@sikka/hajar/index.js",
input: "./www/src/@sikka/hajar/core/index.ts",
external: EXTERNAL,
output: [
{
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lib": ["es6", "dom"], // Specify library files to be included in the compilation
"allowJs": true, // Allow JavaScript files to be compiled
"outDir": "./dist", // Redirect output structure to the directory
"rootDir": "./www/src", // Specify the root directory of input files
"rootDir": "./www/src/@sikka/hajar/core", // Specify the root directory of input files
"removeComments": true, // Do not emit comments to output
"strict": true, // Enable all strict type-checking options

Expand All @@ -22,7 +22,7 @@
},
"include": [
"www/src/@sikka/hajar/core/**/*",
"www/src/@sikka/hajar/index.js"
"www/src/@sikka/hajar/core/**/**/*"
],
"exclude": [
"node_modules", // Exclude the node_modules directory
Expand Down

0 comments on commit 08775c8

Please sign in to comment.