remove file server submodule

This commit is contained in:
Audric 2021-06-23 13:17:04 +10:00
parent 151dcd1431
commit feab29a4fe
7 changed files with 2 additions and 17 deletions

View File

@ -32,4 +32,3 @@ ts/**/*.js
# Libloki specific files
libloki/test/components.js
libloki/modules/mnemonic.js
session-file-server/**

View File

@ -20,9 +20,6 @@ jobs:
- name: Checkout git repo
uses: actions/checkout@v2
- name: Pull git submodules
run: git submodule update --init
- name: Install node
uses: actions/setup-node@v1
with:

View File

@ -22,9 +22,6 @@ jobs:
- name: Checkout git repo
uses: actions/checkout@v2
- name: Pull git submodules
run: git submodule update --init
- name: Install node
uses: actions/setup-node@v1
with:

View File

@ -20,9 +20,6 @@ jobs:
- name: Checkout git repo
uses: actions/checkout@v2
- name: Pull git submodules
run: git submodule update --init
- name: Install node
uses: actions/setup-node@v1
with:

4
.gitmodules vendored
View File

@ -1,4 +0,0 @@
[submodule "session-file-server"]
path = session-file-server
url = https://github.com/loki-project/session-file-server/
branch = session

View File

@ -49,5 +49,4 @@ stylesheets/_intlTelInput.scss
# Coverage
coverage/**
.nyc_output/**
session-file-server/**
release/**

View File

@ -13,8 +13,8 @@ files = [y for x in os.walk(dir_path) for y in glob(os.path.join(x[0], '*.js'))]
files += [y for x in os.walk(dir_path) for y in glob(os.path.join(x[0], '*.ts'))]
files += [y for x in os.walk(dir_path) for y in glob(os.path.join(x[0], '*.tsx'))]
# exclude node_modules and session-file-server directories
filtered_files = [f for f in files if "node_modules" not in f and "session-file-server" not in f]
# exclude node_modules directories
filtered_files = [f for f in files if "node_modules" not in f]
# search for this pattern in _locales/en/messages.json: it is a defined localized string
patternLocalizedString = re.compile("^ \".*\"\: {")