@mirai/core 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@mirai/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "source": "src/index.js",
5
5
  "repository": "https://gitlab.com/miraicorp/dev/frontend/core",
6
6
  "author": "JΛVI <hello@soyjavi.com>",
7
7
  "license": "MIT",
8
8
  "scripts": {
9
9
  "setup": "rm -rf node_modules && rm -rf yarn.lock && yarn install --force",
10
- "start": "parcel public/index.html --dist-dir build --port 8080 --host local.mirai.com --open",
11
- "build": "rm -rf dist && parcel build --dist-dir dist --no-source-maps --no-autoinstall --detailed-report",
12
- "build:dev": "rm -rf dist && NODE_ENV=development parcel build --dist-dir dist",
10
+ "start": "rm -rf dist && parcel public/index.html --port 8080 --host local.mirai.com --open",
11
+ "serve": "rm -rf dist && NODE_ENV=development parcel build public/index.html --no-cache && serve dist -p 8080 -u -n",
12
+ "build": "rm -rf dist && parcel build src/index.js --no-source-maps --no-autoinstall --detailed-report",
13
+ "build:dev": "rm -rf dist && NODE_ENV=development parcel build src/index.js",
13
14
  "lint": "eslint --cache --fix --format codeframe --ext .jsx,.js src",
14
15
  "test": "node scripts/test.js --watchAll=false",
15
16
  "test:coverage": "node scripts/test.js --coverage --coverageReporters=text --detectOpenHandles --forceExit --silent",
@@ -36,7 +37,8 @@
36
37
  "jest-fetch-mock": "^3.0.3",
37
38
  "parcel": "2.7.0",
38
39
  "process": "0.11.10",
39
- "react-scripts": "5.0.1"
40
+ "react-scripts": "5.0.1",
41
+ "serve": "14.1.2"
40
42
  },
41
43
  "engines": {
42
44
  "node": ">=16.15.0"