4 Commits

Author SHA1 Message Date
bc19095869 1.0.13 2022-03-10 16:17:34 +01:00
970a9bcbf8 fix(core): update 2022-03-10 16:17:33 +01:00
e03deffb2d 1.0.12 2022-03-10 15:52:16 +01:00
a15810c195 fix(core): update 2022-03-10 15:52:16 +01:00
3 changed files with 5974 additions and 331 deletions

6295
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartparcel",
"version": "1.0.11",
"version": "1.0.13",
"private": false,
"description": "a wrapper for parcel",
"main": "dist_ts/index.js",
@@ -20,8 +20,9 @@
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
"@pushrocks/smartpath": "^4.0.3",
"@parcel/core": "^2.3.2"
"@parcel/config-default": "^2.3.2",
"@parcel/core": "^2.3.2",
"@pushrocks/smartpath": "^4.0.3"
},
"files": [
"ts/**/*",

View File

@@ -26,7 +26,8 @@ export class Parcel {
},
serveOptions: {
port: 3002
}
},
shouldAutoInstall: true
};
public entryFiles: string | string[] = plugins.path.join(process.cwd(), './html/index.html');