Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pre-commit/action@v3.0.0
with:
extra_args: --all-files
- run: npm install
- run: npm run build
7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-case-conflict
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chrome-extension-webpack",
"version": "1.2.5",
"version": "1.2.11",
"description": "Get started with Chrome extensions development using webpack, Typescript, Sass, and more",
"scripts": {
"generate": "rm -rf ./proto && node generate.js",
Expand Down
2 changes: 1 addition & 1 deletion src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from '../proto/exa/language_server_pb/language_server_pb';

const EXTENSION_NAME = 'chrome';
const EXTENSION_VERSION = '1.2.5';
const EXTENSION_VERSION = '1.2.11';
const BASE_URL = 'https://server.codeium.com';

export const CODEIUM_DEBUG = false;
Expand Down
2 changes: 1 addition & 1 deletion static/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Codeium",
"description": "Your modern coding superpower. Get code completions in Colab and more.",
"version": "1.2.5",
"version": "1.2.11",
"manifest_version": 3,
"background": {
"service_worker": "serviceWorker.js"
Expand Down