Skip to content

Commit

Permalink
dev mode can now rull all kind of things
Browse files Browse the repository at this point in the history
  • Loading branch information
NazmusSayad committed Sep 23, 2024
1 parent a363319 commit 609a8ca
Show file tree
Hide file tree
Showing 12 changed files with 172 additions and 310 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,8 @@ dist

# TernJS port file
.tern-port


# npmize
.npmize
node_modules
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
*
!dist/**
!README.md
!LICENSE.md
!package.json
__lab__
File renamed without changes.
4 changes: 2 additions & 2 deletions build.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const shelljs = require('shelljs')
const crossSpawn = require('cross-spawn')
const fs = require('fs')

fs.rmSync('./dist', { recursive: true, force: true })
shelljs.exec('tsc')
crossSpawn.sync('tsc', { stdio: 'inherit' })
Loading

0 comments on commit 609a8ca

Please sign in to comment.