Skip to content

Commit

Permalink
forgot to add import mappings to the npm package converter
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-azmi committed Feb 18, 2024
1 parent e201754 commit e8ca186
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
12 changes: 12 additions & 0 deletions build_npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@ await build({
esModule: true,
scriptModule: false,
test: false,
mappings: Object.fromEntries(
["binder", "builtin_aliases_deps", "lambda", "struct", "typedefs",].map((submodule_path) => {
return [
"https://deno.land/x/[email protected]/" + submodule_path + ".ts",
{
name: "kitchensink_ts",
version: "^v0.7.3",
subPath: submodule_path,
}
]
})
)
})

// copy other files
Expand Down
1 change: 0 additions & 1 deletion src/license.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,3 @@ This is to prevent the intent of diverting existing or potential users away from

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

1 change: 0 additions & 1 deletion src/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,3 @@ Moreover, the compositions form a tree structure that preserves invertibility -

It also makes diagnosing issues easier - if there is a decoding error, it must be within one of the composed Steps.
The composition tree narrows down where the issue lies.

0 comments on commit e8ca186

Please sign in to comment.