-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Console.Warning -> Warn and rebase main (#36)
* Create FUNDING.yml * Feature/contributors update (#26) * feat: add contributors * fix: cleanup readme * feat: add banner and updated package.json * chore: fixes and update .gitignore * chore: readme styling * chore: readme refactor styling * Create npm-publish.yml (#27) * feat: cicd test * chore: update package-lock.json * feat: add build command to CI * fix: bump version for NPM release * Margin: Check Zero or Truth Values for Margin (#29) * refactor: remove unused import Signed-off-by: K-Kumar-01 <[email protected]> * feat: add util to check zero or truthy value Signed-off-by: K-Kumar-01 <[email protected]> * fix: margin attributes building Signed-off-by: K-Kumar-01 <[email protected]> * docs: update example for lists Signed-off-by: K-Kumar-01 <[email protected]> --------- Signed-off-by: K-Kumar-01 <[email protected]> * chore: bump version with new fixes * fix: move from console.warning to console.warn --------- Signed-off-by: K-Kumar-01 <[email protected]> Co-authored-by: Kushal Kumar <[email protected]>
- Loading branch information
1 parent
c2a37d3
commit db5fa73
Showing
9 changed files
with
71 additions
and
32 deletions.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# These are supported funding model platforms | ||
|
||
# github: TurboDocx | ||
custom: ["https://www.TurboDocx.com"] |
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,34 @@ | ||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | ||
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | ||
|
||
name: TurboDocx NPM Release - Node.js Package | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- run: npm ci | ||
- run: npm test | ||
|
||
publish-npm: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
registry-url: https://registry.npmjs.org/ | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm publish --access public | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |
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,4 +1,8 @@ | ||
### Node ### | ||
|
||
# Output Example.docx | ||
*.docx | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
"name": "html-to-docx", | ||
"version": "1.1.2", | ||
"name": "@turbodocx/html-to-docx", | ||
"version": "1.9.4", | ||
"description": "HTML to DOCX converter", | ||
"keywords": [ | ||
"html", | ||
|
@@ -24,9 +24,9 @@ | |
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/privateOmega/html-to-docx.git" | ||
"url": "git+https://github.com/turbodocx/html-to-docx.git" | ||
}, | ||
"author": "privateOmega <[email protected]>", | ||
"author": "TurboDocx, Inc.", | ||
"contributors": [ | ||
"amrita-syn <[email protected]>", | ||
"charuthaB <[email protected]>", | ||
|
@@ -35,17 +35,19 @@ | |
"erenard", | ||
"KeithGillette", | ||
"juralio-james", | ||
"nicolasiscoding <[email protected]>", | ||
"nicolasiscoding", | ||
"K-Kumar-01 ", | ||
"Swayamshu", | ||
"zedtux <[email protected]>", | ||
"hlerebours", | ||
"hakjeri", | ||
"tasola" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/privateOmega/html-to-docx/issues" | ||
"url": "https://github.com/TurboDocx/html-to-docx/issues" | ||
}, | ||
"homepage": "https://github.com/privateOmega/html-to-docx#readme", | ||
"homepage": "https://github.com/TurboDocx/html-to-docx#readme", | ||
"devDependencies": { | ||
"@commitlint/cli": "^13.1.0", | ||
"@commitlint/config-conventional": "^13.1.0", | ||
|
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
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