Skip to content

Commit

Permalink
chore: eliminate obsolete '.js' references
Browse files Browse the repository at this point in the history
  • Loading branch information
AloisSeckar committed Sep 24, 2023
1 parent 4f35723 commit 9f2939d
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion components/LanguageSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</template>

<script setup lang="ts">
import initEditor from '@/utils/wbsc-global.js'
import initEditor from '@/utils/wbsc-global'
const lang = 'w-6 m-1 inline-block'
const selectedLang = 'w-6 m-1 inline-block border-2 border-amber-300'
Expand Down
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</template>

<script setup lang="ts">
import initEditor from '@/utils/wbsc-global.js'
import initEditor from '@/utils/wbsc-global'
onMounted(() => initEditor())
</script>
5 changes: 5 additions & 0 deletions utils/wbsc-constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/* *************************************** */
/* wbsc-constants.ts */
/* Single point for defining constants */
/* *************************************** */

// DOM elements selectors

export const classWbsc = 'wbsc-inputs'
Expand Down
2 changes: 1 addition & 1 deletion utils/wbsc-eval.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* *************************************** */
/* wbsc-eval.js */
/* wbsc-eval.ts */
/* CORE file with input evaluation methods */
/* *************************************** */

Expand Down
2 changes: 1 addition & 1 deletion utils/wbsc-global.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* *************************************** */
/* wbsc-global.js */
/* wbsc-global.ts */
/* Variable declarations + setting-up */
/* *************************************** */

Expand Down
2 changes: 1 addition & 1 deletion utils/wbsc-html.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* *************************************** */
/* wbsc-html.js */
/* wbsc-html.ts */
/* Helpers to get html code to be inserted */
/* *************************************** */

Expand Down
2 changes: 1 addition & 1 deletion utils/wbsc-input.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* *************************************** */
/* wbsc-input.js */
/* wbsc-input.ts */
/* Preparing and adjusting user inputs */
/* *************************************** */

Expand Down
5 changes: 5 additions & 0 deletions utils/wbsc-json.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/* *************************************** */
/* wbsc-json.ts */
/* Processing JSON input of stored action */
/* *************************************** */

import { WBSCInput } from '@/composables/useInputStore'

// export current input selection as JSON file
Expand Down
2 changes: 1 addition & 1 deletion utils/wbsc-output.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* *************************************** */
/* wbsc-output.js */
/* wbsc-output.ts */
/* Final rendering based on user's input */
/* *************************************** */

Expand Down
2 changes: 1 addition & 1 deletion utils/wbsc-processor.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* *************************************** */
/* wbsc-processor.js */
/* wbsc-processor.ts */
/* Transform and process user's input */
/* *************************************** */

Expand Down
2 changes: 1 addition & 1 deletion utils/wbsc-validation.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* **************************************** */
/* wbsc-validation.js */
/* wbsc-validation.ts */
/* Validate user's input to eliminate plays */
/* that are clearly impossible. */
/* **************************************** */
Expand Down

0 comments on commit 9f2939d

Please # to comment.