Skip to content

Commit

Permalink
refactor: to esm and revert using ncc to build action #3 #5
Browse files Browse the repository at this point in the history
ncc doesn't seem to be bundling some of the dependencies and is resulting
in broken local imports in the `/dist` folder. So for now, we aren't using
it. May need to use rollup or something directly to build
  • Loading branch information
TillaTheHun0 committed Mar 22, 2023
1 parent 5474235 commit ef564da
Show file tree
Hide file tree
Showing 11,997 changed files with 1,366,205 additions and 73,507 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 0 additions & 1 deletion .gitignore
@@ -1 +0,0 @@
node_modules
23 changes: 11 additions & 12 deletions action.yml
@@ -1,27 +1,26 @@

name: 'Bump'
description: 'Bump the manifest and generate changelogs'
name: "Bump"
description: "Bump the manifest and generate changelogs"
inputs:
bump-to:
description: 'the semver version to bump to ("semver" to bump based on commits)'
required: true
package:
description: 'in a monorepo, package that contains the files to be bumped ie. app-opine -> packages/app-opine'
description: "in a monorepo, package that contains the files to be bumped ie. app-opine -> packages/app-opine"
required: false
default: ''
default: ""
prefix:
description: 'string to use as the tag prefix ie. hyper-app-opine -> hyper-app-opine@v1.2.3. Defaults to the input for package'
description: "string to use as the tag prefix ie. hyper-app-opine -> hyper-app-opine@v1.2.3. Defaults to the input for package"
required: false
default: ''
default: ""
runtime:
description: 'runtime for project node or deno. default: deno'
description: "runtime for project node or deno. default: deno"
required: false
default: deno
outputs:
version:
description: 'The semver version bumped to'
description: "The semver version bumped to"
tag:
description: 'The git tag created, if created. undefined if not created.'
description: "The git tag created, if created. undefined if not created."
runs:
using: 'node16'
main: 'dist/index.js'
using: "node16"
main: "index.js"
3,035 changes: 0 additions & 3,035 deletions dist/LICENSES.txt

This file was deleted.

0 comments on commit ef564da

Please sign in to comment.