@c8y/tutorial 1023.14.181 → 1023.14.185
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/cumulocity.config.ts +2 -3
- package/package.json +7 -7
package/cumulocity.config.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { ConfigurationOptions } from '@c8y/devkit';
|
|
2
|
-
import { DefinePlugin } from 'webpack';
|
|
1
|
+
import { ConfigurationOptions, webpack } from '@c8y/devkit';
|
|
3
2
|
import { author, description, name, version, license } from './package.json';
|
|
4
3
|
|
|
5
4
|
export default {
|
|
@@ -925,7 +924,7 @@ export default {
|
|
|
925
924
|
buildTime: {
|
|
926
925
|
extraWebpackConfig: {
|
|
927
926
|
plugins: [
|
|
928
|
-
new DefinePlugin({
|
|
927
|
+
new webpack.DefinePlugin({
|
|
929
928
|
HELLO_WORLD: JSON.stringify('HELLO WORLD')
|
|
930
929
|
})
|
|
931
930
|
]
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/tutorial",
|
|
3
|
-
"version": "1023.14.
|
|
3
|
+
"version": "1023.14.185",
|
|
4
4
|
"description": "This package is used to scaffold a tutorial for Cumulocity IoT Web SDK which explains a lot of concepts.",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@angular/animations": "^20.3.24",
|
|
7
7
|
"@angular/cdk": "^20.2.14",
|
|
8
|
-
"@c8y/bootstrap": "1023.14.
|
|
9
|
-
"@c8y/client": "1023.14.
|
|
10
|
-
"@c8y/ngx-components": "1023.14.
|
|
11
|
-
"@c8y/style": "1023.14.
|
|
8
|
+
"@c8y/bootstrap": "1023.14.185",
|
|
9
|
+
"@c8y/client": "1023.14.185",
|
|
10
|
+
"@c8y/ngx-components": "1023.14.185",
|
|
11
|
+
"@c8y/style": "1023.14.185",
|
|
12
12
|
"leaflet": "1.9.4",
|
|
13
13
|
"monaco-editor": "~0.53.0",
|
|
14
14
|
"ngx-bootstrap": "20.0.2",
|
|
15
15
|
"rxjs": "7.8.2"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@c8y/devkit": "1023.14.
|
|
19
|
-
"@c8y/options": "1023.14.
|
|
18
|
+
"@c8y/devkit": "1023.14.185",
|
|
19
|
+
"@c8y/options": "1023.14.185"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@angular/common": ">=20 <21"
|