Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit bc1e662

Browse files
Merge pull request #7 from codiga/daniel/1868
more fixes and improvements
2 parents 21d14a4 + 5fe7862 commit bc1e662

25 files changed

+561
-383
lines changed

.erb/configs/webpack.config.main.prod.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ const configuration: webpack.Configuration = {
5656
*/
5757
new webpack.EnvironmentPlugin({
5858
NODE_ENV: 'production',
59-
DEBUG_PROD: false,
6059
START_MINIMIZED: false,
6160
}),
6261

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ module.exports = {
2828
leadingUnderscore: 'allow',
2929
},
3030
],
31+
'prettier/prettier': 'off',
3132
},
3233
parserOptions: {
3334
ecmaVersion: 2020,

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
node-version: 14
2121
- name: Install Packages
2222
run: npm install
23+
- name: Add Rollbar
24+
run: echo export default "'${{ secrets.rollbar_token }}'" > ./src/renderer/lib/rollbarAccessToken.ts
2325
- name: Build and Test
2426
run: npm run build && npm test
2527
- name: Lint

assets/icon.icns

178 KB
Binary file not shown.

package-lock.json

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

package.json

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"coding-assistant",
77
"codiga"
88
],
9-
"version": "0.0.5",
9+
"version": "0.0.12",
1010
"homepage": "https://www.codiga.io/",
1111
"bugs": {
1212
"url": "https://github.com/codiga/code-snippets-manager/issues"
@@ -100,19 +100,18 @@
100100
"@apollo/client": "^3.6.9",
101101
"@chakra-ui/icons": "^1.1.7",
102102
"@chakra-ui/react": "^1.8.8",
103-
"@codiga/components": "^1.1.0",
103+
"@codiga/components": "^1.3.0",
104104
"@electron/remote": "^2.0.8",
105105
"@emotion/react": "^11.10.0",
106106
"@emotion/styled": "^11.10.0",
107+
"@rollbar/react": "^0.11.1",
107108
"apollo-link-debounce": "^3.0.0",
108-
"bootstrap": "^5.1.3",
109109
"buffer": "^6.0.3",
110110
"cross-fetch": "^3.1.5",
111111
"electron-debug": "^3.2.0",
112112
"electron-log": "^4.4.8",
113113
"electron-store": "^8.1.0",
114114
"electron-updater": "^5.2.1",
115-
"frameless-titlebar": "^2.1.4",
116115
"framer-motion": "^6.5.1",
117116
"graphql": "^16.6.0",
118117
"path-browserify": "^1.0.1",
@@ -121,7 +120,7 @@
121120
"react-dom": "^18.2.0",
122121
"react-hook-form": "^7.34.2",
123122
"react-router-dom": "^6.3.0",
124-
"reactstrap": "^9.1.3",
123+
"rollbar": "^2.25.1",
125124
"url": "^0.11.0"
126125
},
127126
"devDependencies": {
@@ -234,12 +233,7 @@
234233
},
235234
"win": {
236235
"target": [
237-
{
238-
"target": "nsis"
239-
},
240-
{
241-
"target": "msi"
242-
}
236+
"nsis"
243237
],
244238
"publisherName": "Xcoding Labs Inc.",
245239
"signAndEditExecutable": true,

release/app/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codiga",
3-
"version": "0.0.5",
3+
"version": "0.0.12",
44
"description": "Codiga Code Snippets Manager",
55
"license": "MIT",
66
"author": {

0 commit comments

Comments
 (0)