contents-popup-redtombo 1.0.4 → 1.0.5

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.
@@ -24,7 +24,6 @@ watch(
24
24
  component, // 監視対象としてリアクティブな `component` を指定
25
25
  (newComponent: string) => {
26
26
  changePopup(newComponent); // ポップアップを変更する
27
- console.log("test");
28
27
  }
29
28
  );
30
29
 
package/package.json CHANGED
@@ -1,11 +1,18 @@
1
1
  {
2
2
  "name": "contents-popup-redtombo",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "中のComponentsを動的に切り替えれるポップアップ",
5
5
  "main": "./module.ts",
6
6
  "exports": {
7
7
  ".": "./module.ts"
8
8
  },
9
+ "scripts": {
10
+ "build": "nuxt build",
11
+ "dev": "nuxt dev",
12
+ "generate": "nuxt generate",
13
+ "preview": "nuxt preview",
14
+ "postinstall": "nuxt prepare"
15
+ },
9
16
  "peerDependencies": {
10
17
  "bootstrap": "^5.0.0",
11
18
  "nuxt": "^3.0.0"