Skip to content

Commit

Permalink
v1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jendib committed Jan 25, 2021
1 parent 57b67fe commit ee6ed2b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs-core/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.sismics.docs</groupId>
<artifactId>docs-parent</artifactId>
<version>1.9-SNAPSHOT</version>
<version>1.9</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions docs-importer/main.js
Expand Up @@ -24,7 +24,7 @@ const prefs = new preferences('com.sismics.docs.importer',{
});

// Welcome message
console.log('Teedy Importer 1.8, https://teedy.io' +
console.log('Teedy Importer 1.9, https://teedy.io' +
'\n\n' +
'This program let you import files from your system to Teedy' +
'\n');
Expand Down Expand Up @@ -365,7 +365,7 @@ const start = () => {
const importFiles = (remove, filesImported) => {
recursive(prefs.importer.path, function (error, files) {

files = files.filter(minimatch.filter(prefs.importer.fileFilter ?? "*", {matchBase: true}));
files = files.filter(minimatch.filter(prefs.importer.fileFilter || '*', { matchBase: true }));
if (files.length === 0) {
filesImported();
return;
Expand Down
2 changes: 1 addition & 1 deletion docs-importer/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 docs-importer/package.json
@@ -1,6 +1,6 @@
{
"name": "teedy-importer",
"version": "1.8.0",
"version": "1.9.0",
"description": "Import files to Teedy",
"bin": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion docs-stress/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.sismics.docs</groupId>
<artifactId>docs-parent</artifactId>
<version>1.9-SNAPSHOT</version>
<version>1.9</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion docs-web-common/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.sismics.docs</groupId>
<artifactId>docs-parent</artifactId>
<version>1.9-SNAPSHOT</version>
<version>1.9</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion docs-web/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.sismics.docs</groupId>
<artifactId>docs-parent</artifactId>
<version>1.9-SNAPSHOT</version>
<version>1.9</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@
<groupId>com.sismics.docs</groupId>
<artifactId>docs-parent</artifactId>
<packaging>pom</packaging>
<version>1.9-SNAPSHOT</version>
<version>1.9</version>

<name>Docs Parent</name>

Expand Down

0 comments on commit ee6ed2b

Please sign in to comment.