feat: Convert package scripts to work with JS

This commit is contained in:
Faruk AYDIN
2024-01-07 19:33:59 +01:00
parent ccf5928262
commit f0d2f07193
16 changed files with 25 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,4 +1,4 @@
import appConfig from '../../config/app';
import appConfig from '../../config/app.js';
export async function up(knex) {
if (!appConfig.isCloud) return;

View File

@@ -1,5 +1,5 @@
import capitalize from 'lodash/capitalize';
import lowerCase from 'lodash/lowerCase';
import capitalize from 'lodash/capitalize.js';
import lowerCase from 'lodash/lowerCase.js';
export async function up(knex) {
await knex.schema.createTable('roles', (table) => {