Skip to content

Commit

Permalink
Merge pull request #18 from CGWebDev2003/main
Browse files Browse the repository at this point in the history
[v1.2.0] - Fixed the module problem
  • Loading branch information
CGWebDev2003 authored Jun 8, 2023
2 parents bac7400 + 3ddcd55 commit e18e344
Show file tree
Hide file tree
Showing 14 changed files with 425 additions and 375 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules/
/out/
/testing/
test.js
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Released]

## [1.2.0] - 2023-06-08

## Fixed

- Fixed the module problem

## [1.1.0] - 2023-05-21

### Added
Expand Down
15 changes: 15 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"$badges": ["src/badge.js"],
"$buttons": ["src/button.js"],
"$link": ["src/link.js"],
"$progressbar": ["src/progressBar.js"],
"$spinner": ["src/spinner.js"],
"$toasts": ["src/toast.js"]
}
},
"include": ["src/**/*.js"],
"exclude": ["node_modules", "**/node_modules", "dist"]
}
12 changes: 9 additions & 3 deletions jsdoc.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@
"allowUnknownTags": true
},
"source": {
"include": "./neptune.js",
"exclude": [
"include": [
"./neptune.min.js",
"./test.js"
"./neptune.js",
"./src/badge.js",
"./src/button.js",
"./src/link.js",
"./src/progressBar.js",
"./src/spinner.js",
"./src/toast.js"
],
"exclude": "./test.js",
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
Expand Down
Loading

0 comments on commit e18e344

Please sign in to comment.