Skip to content

Commit

Permalink
wip: refresh board when setting got changed
Browse files Browse the repository at this point in the history
  • Loading branch information
abeimler committed Nov 24, 2023
1 parent 34cf934 commit 3958b27
Show file tree
Hide file tree
Showing 21 changed files with 349 additions and 341 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: npm install

- name: Run build
run: npm build
run: npm run build

- name: Run Package
run: npm pack
- name: Run package
run: npm run pack
19 changes: 19 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"build:dev": "webpack --config webpack/webpack.dev.js",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack/webpack.dev.js",
"clean": "rimraf dist",
"test": "npx jest",
"lint": "npx eslint src",
Expand Down Expand Up @@ -95,6 +95,7 @@
"@typescript-eslint/parser": "^6.9.0",
"adm-zip": "^0.5.10",
"copy-webpack-plugin": "^9.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
Expand Down
1 change: 1 addition & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const T4P_DEVELOPMENT: boolean = process.env.NODE_ENV !== 'development';
Loading

0 comments on commit 3958b27

Please sign in to comment.