Skip to content

Commit

Permalink
Fix build process
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessina committed Oct 21, 2024
1 parent 53783a5 commit ae22b6c
Show file tree
Hide file tree
Showing 7 changed files with 967 additions and 958 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"deploy:beta": "npm run build && cd dist/near-fastauth-wallet && npm publish --tag beta",
"test": "nx test",
"watch": "nodemon",
"tailwind": "npx tailwindcss -i ./src/ui/styles.css -o ./src/ui/styles.output.css --watch",
"tailwind:build": "npx tailwindcss -i ./src/ui/styles.css -o ./src/ui/styles.output.css"
"tailwind": "npx tailwindcss -i ./src/ui/styles.input.css -o ./src/ui/styles.css --watch",
"tailwind:build": "npx tailwindcss -i ./src/ui/styles.input.css -o ./src/ui/styles.css"
},
"dependencies": {
"@near-js/transactions": "^0.2.1",
Expand Down
2 changes: 1 addition & 1 deletion project.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"outputPath": "dist/near-fastauth-wallet",
"main": "./src/index.ts",
"tsConfig": "./tsconfig.lib.json",
"assets": ["*.md"]
"assets": ["*.md", "src/ui/styles.css"]
}
},
"lint": {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/reactApp.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ReactDOM from 'react-dom/client';
import IframeDialog from './IframeDialog';
import './styles.output.css';
import './styles.css';

export const renderIFrame = ({
iframeSrc,
Expand Down
Loading

0 comments on commit ae22b6c

Please sign in to comment.