Describe the bug
When we calculate out the relative paths that are used to generate the js files on a windows machine it generates the import of EvoElement.js like this:
import { EvoElement, createStyles } from '..\Evo-1.1.2\EvoElement.js'
Yet it needs to do it like this:
import { EvoElement, createStyles } from '../Evo-1.1.2/EvoElement.js'
To fix the problem we need to convert all:
import * as path from 'node:path';
with:
import { posix as path } from 'node:path';
in the source code to accommodate the correct slashes.
Describe the bug When we calculate out the relative paths that are used to generate the js files on a windows machine it generates the import of EvoElement.js like this:
import { EvoElement, createStyles } from '..\Evo-1.1.2\EvoElement.js'
Yet it needs to do it like this:import { EvoElement, createStyles } from '../Evo-1.1.2/EvoElement.js'
To fix the problem we need to convert all: import * as path from 'node:path'; with: import { posix as path } from 'node:path';
in the source code to accommodate the correct slashes.