@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/.eslintcache +1 -1
- package/.parcel-cache/51ea8fb016c64eb8 +0 -0
- package/.parcel-cache/{748e64b1ec39ac27.txt → 72471439ad18bff9.txt} +40945 -40036
- package/.parcel-cache/{006382683751cb2c → 90933f9239a61cbe} +0 -0
- package/.parcel-cache/{ecf7e61a8deef7e6 → 944459d3f9d19648} +0 -0
- package/.parcel-cache/{70c3d7e52fdd0976 → c0d599fd2b545c71} +0 -0
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/dist/{Finder.69dd37d8.js → Finder.c02fd99c.js} +1 -1
- package/dist/{Session.f41c5015.js → Session.0d1b3fa4.js} +3 -3
- package/dist/{State.205b6d65.js → State.9d39ac4c.js} +1 -1
- package/dist/index.js +1 -1
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirai/core",
|
|
3
|
-
"version": "0.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 --
|
|
11
|
-
"
|
|
12
|
-
"build
|
|
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"
|