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.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/index.js +1 -1
  3. 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
@@ -116,4 +116,4 @@ export { default as FeatureFlags } from './manager/FeatureFlags.js';
116
116
 
117
117
  // Version du framework
118
118
 
119
- export const VERSION = '0.5.17';
119
+ export const VERSION = '0.5.22';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvasframework",
3
- "version": "0.5.20",
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
  }