This repository was archived by the owner on Jan 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import { writeFileSync } from 'fs';
22import { join } from 'path' ;
33
44export const cleanUp = async ( ) => {
5- const styleFilePath = join ( __dirname , '../../src /core/styles/style.module.css' ) ;
6- const globalFilePath = join ( __dirname , '../../src /core/styles/style.module.css' ) ;
5+ const styleFilePath = join ( __dirname , '../../dist /core/styles/style.module.css' ) ;
6+ const globalFilePath = join ( __dirname , '../../dist /core/styles/style.module.css' ) ;
77 try {
88 writeFileSync ( styleFilePath , '/*______________________________*/' , 'utf-8' ) ;
99 writeFileSync ( globalFilePath , '/*______________________________*/' , 'utf-8' ) ;
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ import * as fs from 'fs';
33import ts from 'typescript' ;
44import { globby } from 'globby' ;
55import { cleanUp } from './clean-up' ;
6- import { createBuildIn } from '../../src /core/method/create-build-in-helper.js' ;
7- import { setBuildIn } from '../../src /core/method/set-build-in-helper.js' ;
8- import { globalBuildIn } from '../../src /core/method/global-build-in-helper.js' ;
9- import { rootBuildIn } from '../../src /core/method/root-build-in-helper.js' ;
6+ import { createBuildIn } from '../../dist /core/method/create-build-in-helper.js' ;
7+ import { setBuildIn } from '../../dist /core/method/set-build-in-helper.js' ;
8+ import { globalBuildIn } from '../../dist /core/method/global-build-in-helper.js' ;
9+ import { rootBuildIn } from '../../dist /core/method/root-build-in-helper.js' ;
1010
1111function isCSSX ( filePath : string ) : boolean {
1212 const content = fs . readFileSync ( filePath , 'utf8' ) ;
Original file line number Diff line number Diff line change 1- export { ServerStylePreview } from '../src /core/component/server-style-preview' ;
1+ export { ServerStylePreview } from '../dist /core/component/server-style-preview' ;
You can’t perform that action at this time.
0 commit comments