@makolabs/ripple 0.2.0 → 0.2.1-0

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.
@@ -281,7 +281,7 @@
281
281
  // Toggle selection for files
282
282
  const isCurrentlySelected = selectedFiles.includes(file.key);
283
283
  console.log('isCurrentlySelected [HANDLEROWCLICK]', isCurrentlySelected);
284
- console.log('selectedFiles [HANDLEROWCLICK]X', selectedFiles);
284
+ console.log('selectedFiles [HANDLEROWCLICK]', selectedFiles);
285
285
  console.log('selected [HANDLEROWCLICK]', selected);
286
286
 
287
287
  if (isCurrentlySelected) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makolabs/ripple",
3
- "version": "0.2.0",
3
+ "version": "0.2.1-0",
4
4
  "description": "Simple Svelte 5 powered component library ✨",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,10 +19,14 @@
19
19
  "test:unit": "vitest",
20
20
  "test": "npm run test:unit -- --run && npm run test:e2e",
21
21
  "test:e2e": "playwright test",
22
- "minor": "git add . && git commit -m \"chore: prepare for publish minor\" && npm version minor && git push --follow-tags && npm publish",
23
- "patch": "git add . && git commit -m \"chore: prepare for publish patch\" && npm version patch && git push --follow-tags && npm publish",
24
- "prelish": "git add . && git commit -m \"chore: prepare for publish premajor\" && npm version premajor && git push --follow-tags && npm publish",
25
- "major": "git add . && git commit -m \"chore: prepare for publish major\" && npm version major && git push --follow-tags && npm publish"
22
+ "pub:minor": "git add . && git commit -m \"chore: prepare for publish minor\" && npm version minor && git push --follow-tags && npm publish",
23
+ "pub:patch": "git add . && git commit -m \"chore: prepare for publish patch\" && npm version patch && git push --follow-tags && npm publish",
24
+ "pub:prelish": "git add . && git commit -m \"chore: prepare for publish premajor\" && npm version premajor && git push --follow-tags && npm publish",
25
+ "pub:major": "git add . && git commit -m \"chore: prepare for publish major\" && npm version major && git push --follow-tags && npm publish",
26
+ "pub:preminor": "git add . && git commit -m \"chore: prepare for publish preminor\" && npm version preminor && git push --follow-tags && npm publish",
27
+ "pub:prepatch": "git add . && git commit -m \"chore: prepare for publish prepatch\" && npm version prepatch && git push --follow-tags && npm publish",
28
+ "pub:prerelease": "git add . && git commit -m \"chore: prepare for publish prerelease\" && npm version prerelease && git push --follow-tags && npm publish",
29
+ "pub:from-git": "git add . && git commit -m \"chore: prepare for publish from-git\" && npm version from-git && git push --follow-tags && npm publish"
26
30
  },
27
31
  "files": [
28
32
  "dist",