Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "mips-core", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "MIPS Assembler Simulator Inspired by MARS", | ||
"main": "build/mips-core.js", | ||
"types": "build/index.d.ts", | ||
"scripts": { | ||
"prebuild": "rm -rf build", | ||
"prebuild": "rm -rf build && tsc --emitDeclarationOnly", | ||
"build": "webpack", | ||
@@ -9,0 +10,0 @@ "test": "nyc mocha" |
@@ -1,4 +0,4 @@ | ||
export * from 'assembler'; | ||
export * from 'instruction'; | ||
export * from 'hardware'; | ||
export * from 'simulator'; | ||
export * from './assembler'; | ||
export * from './instruction'; | ||
export * from './hardware'; | ||
export * from './simulator'; |
@@ -8,2 +8,4 @@ { | ||
"moduleResolution": "node", | ||
"declaration": true, | ||
"outDir": "build", | ||
"noImplicitAny": true, | ||
@@ -10,0 +12,0 @@ "strict": true, |
Sorry, the diff of this file is not supported yet
41855
33
699