generated from laxmanpokhrel/xmanscript-npm-package-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from laxmanpokhrel/fix/individual-export-decle…
…ration fix: test by package.json for getDifferenceObject
- Loading branch information
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
## This release for testing subpath modules and their declerations | ||
- Folder structure changed and types removed from package.json | ||
- changed export pattern | ||
- changed export pattern | ||
- individual package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "@xmanscript/utils/getDifferenceObject", | ||
"type": "module", | ||
"main": "../lib/cjs/getDifferenceObject/index.js", | ||
"module": "../lib/esm/getDifferenceObject/index.js", | ||
"types": "../lib/esm/getDifferenceObject/index.d.ts", | ||
"sideEffects": false | ||
} | ||
|