Skip to content

Commit eb23876

Browse files
committed
Publish trial
1 parent 3299d84 commit eb23876

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

.github/workflows/npm-publish.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: publish on npm
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v2
17+
with:
18+
node-version: 18
19+
registry-url: https://registry.npmjs.org/
20+
21+
- name: Install dependencies
22+
run: npm install
23+
24+
- name: Publish to npm
25+
run: npm publish --access public
26+
env:
27+
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@enhancedjax/react-browser-containers",
2+
"name": "react-browser-containers",
33
"version": "1.0.0",
44
"description": "",
55
"scripts": {

src/components/ChromeBrowser/styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export const BrowserContainer = styled.div<{
5858
sans-serif;
5959
color: ${({ theme }) => theme.text};
6060
overflow: hidden;
61+
text-align: left;
6162
transition:
6263
background-color 0.3s,
6364
color 0.3s;

0 commit comments

Comments
 (0)