canvasframework 0.5.20 → 0.5.22
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/README.md +8 -0
- package/index.js +1 -1
- package/package.json +2 -9
package/README.md
CHANGED
|
@@ -20,6 +20,9 @@
|
|
|
20
20
|
|
|
21
21
|
# Configure webpack and babel
|
|
22
22
|
|
|
23
|
+
add your app.js in src folder and index.html in www folder
|
|
24
|
+
in index.html add script src bundle.js
|
|
25
|
+
|
|
23
26
|
```
|
|
24
27
|
// webpack.config.cjs
|
|
25
28
|
const path = require('path');
|
|
@@ -46,6 +49,11 @@ module.exports = {
|
|
|
46
49
|
}
|
|
47
50
|
};
|
|
48
51
|
```
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
webpack.config.js → webpack.config.cjs
|
|
55
|
+
```
|
|
56
|
+
|
|
49
57
|
---
|
|
50
58
|
|
|
51
59
|
# launch
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "canvasframework",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.22",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/beyons/CanvasFramework.git"
|
|
@@ -28,12 +28,5 @@
|
|
|
28
28
|
"cupertino",
|
|
29
29
|
"mobile"
|
|
30
30
|
],
|
|
31
|
-
"license": "MIT"
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@babel/core": "^7.29.0",
|
|
34
|
-
"@babel/preset-env": "^7.29.0",
|
|
35
|
-
"babel-loader": "^10.0.0",
|
|
36
|
-
"webpack": "^5.105.0",
|
|
37
|
-
"webpack-cli": "^6.0.1"
|
|
38
|
-
}
|
|
31
|
+
"license": "MIT"
|
|
39
32
|
}
|