easy-with-style 3.0.358 → 3.0.359

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 (2) hide show
  1. package/package.json +1 -1
  2. package/swc.sh +60 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "easy-with-style",
3
3
  "author": "James Smith",
4
- "version": "3.0.358",
4
+ "version": "3.0.359",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/easy-with-style",
7
7
  "description": "Programmatic styles for Easy.",
package/swc.sh ADDED
@@ -0,0 +1,60 @@
1
+ #!/bin/bash
2
+
3
+ directories=( ../yapp
4
+ ../occam-styles
5
+ ../easy
6
+ ../reaction
7
+ ../easy-with-style
8
+ ../concurrent-server
9
+ ../occam-semver
10
+ ../necessary
11
+ ../highmark-markdown
12
+ ../juxtapose
13
+ ../occam-preview
14
+ ../occam-pretty
15
+ ../occam-file-system
16
+ ../occam-documents
17
+ ../easy-layout
18
+ ../reaction-hooks
19
+ ../occam-client
20
+ ../occam-verify-cli
21
+ ../xgl
22
+ ../easy-file-system
23
+ ../occam-browser
24
+ ../occam-editor
25
+ ../occam-custom-grammars
26
+ ../easy-navigation
27
+ ../concurrent-client
28
+ ../highmark-yapp
29
+ ../occam-desktop
30
+ ../sufficient
31
+ ../occam-grammars
32
+ ../occam-directed-graphs
33
+ ../occam-lexers
34
+ ../easy-mobile
35
+ ../occam-incremental
36
+ ../inference
37
+ ../highmark-cli
38
+ ../highmark-fonts
39
+ ../reaction-with-style
40
+ ../easy-drag-and-drop
41
+ ../occam-entities
42
+ ../occam-parsers
43
+ ../easy-richtextarea
44
+ ../occam-grammar-utilities
45
+ ../with-style
46
+ ../occam-query
47
+ ../fragmented )
48
+
49
+ for index in "${!directories[@]}"
50
+ do
51
+ directory=${directories[$index]}
52
+
53
+ cd $directory
54
+ npm install -D @swc/core@latest
55
+ npm --no-git-tag-version version patch
56
+ git add . --all
57
+ git commit -m "Unpinned the SWC dependency."
58
+ git push
59
+ npm publish
60
+ done