@hatiolab/things-scene 9.0.0-beta.3 → 9.0.0-beta.31
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/.cursorignore +62 -0
- package/db.sqlite +0 -0
- package/package.json +3 -1
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.mjs +42 -16
- package/schema.graphql +0 -4552
- package/things-board.js +0 -9
- package/things-scene.d.ts +0 -750
package/.cursorignore
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# build
|
|
2
|
+
_site/
|
|
3
|
+
dist/
|
|
4
|
+
out-tsc/
|
|
5
|
+
|
|
6
|
+
## npm
|
|
7
|
+
node_modules/
|
|
8
|
+
npm-debug.log
|
|
9
|
+
|
|
10
|
+
logs/
|
|
11
|
+
uploads/
|
|
12
|
+
attachments/
|
|
13
|
+
extensions/
|
|
14
|
+
*.sqlite
|
|
15
|
+
*.sql
|
|
16
|
+
yarn*.*
|
|
17
|
+
package-lock.json
|
|
18
|
+
|
|
19
|
+
## system files
|
|
20
|
+
.DS_Store
|
|
21
|
+
|
|
22
|
+
## editors
|
|
23
|
+
.idea
|
|
24
|
+
.vscode
|
|
25
|
+
|
|
26
|
+
platforms
|
|
27
|
+
|
|
28
|
+
## temp folders
|
|
29
|
+
.tmp/
|
|
30
|
+
|
|
31
|
+
## testing
|
|
32
|
+
coverage/
|
|
33
|
+
|
|
34
|
+
*.log
|
|
35
|
+
config.*.js
|
|
36
|
+
config.*.json
|
|
37
|
+
!**/config/config.*.js
|
|
38
|
+
!**/installer/config.*.js
|
|
39
|
+
|
|
40
|
+
# Built style type definitions
|
|
41
|
+
*.scss.d.ts
|
|
42
|
+
*.graphql.d.ts
|
|
43
|
+
|
|
44
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
45
|
+
lib-cov
|
|
46
|
+
|
|
47
|
+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
48
|
+
.grunt
|
|
49
|
+
|
|
50
|
+
# node-waf configuration
|
|
51
|
+
.lock-wscript
|
|
52
|
+
|
|
53
|
+
tmp
|
|
54
|
+
*.tsbuildinfo
|
|
55
|
+
|
|
56
|
+
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
57
|
+
build/Release
|
|
58
|
+
|
|
59
|
+
storybook-static
|
|
60
|
+
custom-elements.json
|
|
61
|
+
|
|
62
|
+
.rollup.cache
|
package/db.sqlite
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hatiolab/things-scene",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.31",
|
|
4
4
|
"description": "2D graphic library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"module": "things-scene.mjs",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"serve:dev": "things-factory-dev",
|
|
29
29
|
"serve:simple-http-server": "webpack-dev-server --config webpack.config.dev.js --hot --inline --host 0.0.0.0",
|
|
30
30
|
"build": "webpack && rollup -c",
|
|
31
|
+
"build:clean": "rm yarn.lock || echo 'yarn.lock not found.' && yarn install && yarn build",
|
|
31
32
|
"build:client": "npm run clean:client && webpack --config node_modules/@things-factory/shell/webpack.config.js",
|
|
32
33
|
"clean:client": "rm -rf dist-client",
|
|
33
34
|
"prepublish": "webpack && rollup -c",
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
},
|
|
81
82
|
"homepage": "https://github.com/hatiolab/things-scene#readme",
|
|
82
83
|
"dependencies": {
|
|
84
|
+
"@material/web": "^2.2.0",
|
|
83
85
|
"@wizpanda/super-gif": "^0.0.6",
|
|
84
86
|
"canvas-roundrect-polyfill": "^0.0.1",
|
|
85
87
|
"core-js": "^3.26.0",
|