@things-factory/work-shift 6.2.70 → 6.2.77
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/client/bootstrap.ts +1 -0
- package/client/index.ts +0 -0
- package/client/pages/{work-shift.js → work-shift.ts} +35 -29
- package/client/tsconfig.json +13 -0
- package/dist-client/bootstrap.d.ts +1 -0
- package/dist-client/bootstrap.js +2 -0
- package/dist-client/bootstrap.js.map +1 -0
- package/dist-client/index.d.ts +0 -0
- package/dist-client/index.js +2 -0
- package/dist-client/index.js.map +1 -0
- package/dist-client/pages/work-shift.d.ts +2 -0
- package/dist-client/pages/work-shift.js +114 -0
- package/dist-client/pages/work-shift.js.map +1 -0
- package/dist-client/route.d.ts +1 -0
- package/dist-client/route.js +8 -0
- package/dist-client/route.js.map +1 -0
- package/dist-client/tsconfig.tsbuildinfo +1 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +12 -9
- package/server/tsconfig.json +10 -0
- package/things-factory.config.js +2 -2
- package/client/bootstrap.js +0 -3
- package/client/index.js +0 -1
- package/tsconfig.json +0 -9
- /package/client/{route.js → route.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/work-shift",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.77",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
|
-
"browser": "client/index.js",
|
|
5
|
+
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
7
7
|
"author": "heartyoh <heartyoh@hatiolab.com>",
|
|
8
8
|
"description": "Module to handle work shift",
|
|
@@ -17,17 +17,20 @@
|
|
|
17
17
|
"directory": "packages/work-shift"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"build": "
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
20
|
+
"build": "npm run build:server && npm run build:client",
|
|
21
|
+
"copy:files": "copyfiles -e \"./client/**/*.{ts,js,json}\" -u 1 \"./client/**/*\" dist-client",
|
|
22
|
+
"build:client": "npm run copy:files && npx tsc --p ./client/tsconfig.json",
|
|
23
|
+
"build:server": "npx tsc --p ./server/tsconfig.json",
|
|
24
|
+
"clean:client": "npx rimraf dist-client",
|
|
25
|
+
"clean:server": "npx rimraf dist-server",
|
|
26
|
+
"clean": "npm run clean:server && npm run clean:client",
|
|
24
27
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
25
28
|
},
|
|
26
29
|
"dependencies": {
|
|
27
|
-
"@things-factory/auth-base": "^6.2.
|
|
30
|
+
"@things-factory/auth-base": "^6.2.77",
|
|
28
31
|
"@things-factory/env": "^6.2.33",
|
|
29
|
-
"@things-factory/shell": "^6.2.
|
|
32
|
+
"@things-factory/shell": "^6.2.77",
|
|
30
33
|
"moment-timezone": "^0.5.40"
|
|
31
34
|
},
|
|
32
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "91090127331d8e4cdbbfeb2f82c8dfe8dc65bfee"
|
|
33
36
|
}
|
package/things-factory.config.js
CHANGED
package/client/bootstrap.js
DELETED
package/client/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './actions/main'
|
package/tsconfig.json
DELETED
|
File without changes
|