@cal.macconnachie/web-components 0.0.3 → 0.0.4
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/package.json +9 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cal.macconnachie/web-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Web components hosted on a CDN",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
"files": [
|
|
36
36
|
"dist"
|
|
37
37
|
],
|
|
38
|
+
"workspaces": [
|
|
39
|
+
"cdn"
|
|
40
|
+
],
|
|
38
41
|
"scripts": {
|
|
39
42
|
"dev": "vite",
|
|
40
43
|
"build": "vite build",
|
|
@@ -47,11 +50,11 @@
|
|
|
47
50
|
"release:minor": "standard-version --release-as minor && git push --follow-tags",
|
|
48
51
|
"release:major": "standard-version --release-as major && git push --follow-tags",
|
|
49
52
|
"release:first": "standard-version --first-release && git push --follow-tags",
|
|
50
|
-
"cdk": "yarn
|
|
51
|
-
"cdk:deploy": "yarn
|
|
52
|
-
"cdk:synth": "yarn
|
|
53
|
-
"cdk:diff": "yarn
|
|
54
|
-
"cdk:destroy": "yarn
|
|
53
|
+
"cdk": "yarn workspace cdn cdk",
|
|
54
|
+
"cdk:deploy": "yarn workspace cdn cdk deploy",
|
|
55
|
+
"cdk:synth": "yarn workspace cdn cdk synth",
|
|
56
|
+
"cdk:diff": "yarn workspace cdn cdk diff",
|
|
57
|
+
"cdk:destroy": "yarn workspace cdn cdk destroy"
|
|
55
58
|
},
|
|
56
59
|
"dependencies": {
|
|
57
60
|
"lit": "^3.3.1"
|