Skip to content

Commit 64906ac

Browse files
testing tinymce npm package deployment
1 parent 481520a commit 64906ac

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
},
2929
"license": "MIT",
3030
"dependencies": {
31-
"stenciljs-components": "^1.0.7"
31+
"stenciljs-components": "^1.0.7",
32+
"tinymce": "^7.6.0"
3233
}
3334
}

src/components/app-home-page/app-home-page.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,12 @@ export class AppHome {
6464
<h1>GitHub Pages</h1>
6565
<p>GitHub Pages are GitHub feature that allows users to host websites based on their GitHub public repositories for no additional cost.</p>
6666
<p>GitHub Pages are public web pages for users, organizations, and repositories, that are freely hosted on GitHub’s github.io domain or on a custom domain name of your choice. GitHub Pages are powered by Jekyll behind the scenes, so they’re a great way to host your Jekyll-powered website for free.</p>
67+
<p>GitHub Pages will look for an index.html , index.md , or README.md file as the entry file for your site. </p>
68+
<p>For this convert an existing repo into Github Pages (or) create a new public repository named <b>username.github.io</b>, where username is your username (or organization name) on GitHub.</p>
69+
<p><a href="https://docs.github.com/en/pages/getting-started-with-github-pages/creating-a-github-pages-site">Source</a></p>
6770
<h1>GitHub Actions</h1>
71+
<p>GitHub Actions is required in scenario where entry file of a repository is not at root directory and the repository is of a framework like React, Angular, StencilJS</p>
6872
<p>GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production.</p>
69-
7073
<p>GitHub Actions goes beyond just DevOps and lets you run workflows when other events happen in your repository. For example, you can run a workflow to automatically add the appropriate labels whenever someone creates a new issue in your repository.</p>
7174
<p>You can configure a GitHub Actions workflow to be triggered when an event occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more jobs which can run in sequential order or in parallel.</p>
7275
<p>A workflow is a configurable automated process that will run one or more jobs. Workflows are defined by a YAML file checked in to your repository and will run when triggered by an event in your repository, or they can be triggered manually, or at a defined schedule.</p>

stencil.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export const config: Config = {
1818
serviceWorker: null,
1919
// baseUrl: 'https://myapp.local/',
2020
// baseUrl:'/build/', like in fluid it opens to localhost:3333/fluid/
21+
// baseUrl: '/', Adjust based on your hosting setup
2122
},
2223

2324
],

0 commit comments

Comments
 (0)