@netacea/cloudflare 1.6.7 → 1.6.8

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.6.8](https://github.com/Netacea/JavascriptATAIntegration/compare/@netacea/cloudflare@1.6.7...@netacea/cloudflare@1.6.8) (2022-08-08)
7
+
8
+ **Note:** Version bump only for package @netacea/cloudflare
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.6.7](https://github.com/Netacea/JavascriptATAIntegration/compare/@netacea/cloudflare@1.6.6...@netacea/cloudflare@1.6.7) (2022-07-13)
7
15
 
8
16
 
package/README.md CHANGED
@@ -7,14 +7,34 @@
7
7
 
8
8
  `@netacea/cloudflare` is a package designed to add [Netacea](https://netacea.com) functionality to [Cloudflare Workers](https://workers.cloudflare.com/).
9
9
 
10
+ ## Diagrams, Testing & Tooling
11
+
12
+ Additional documentation for cloudflare can be found [here](https://github.com/Netacea/JavascriptATAIntegration/blob/main/docs/integrations/CLOUDFLARE.md) in the docs folder
13
+
10
14
  ## Installation
11
15
 
12
16
  ### 🤠 __Wrangler__
13
17
 
14
18
  We strongly recommend installing and using [wrangler](https://github.com/cloudflare/wrangler) to manage your cloudflare workers. Wrangler is a CLI tool designed to make previewing and deploying Cloudflare Workers seamless.
15
19
 
20
+ If you need to use root via wsl and are installing wrangler, you may need to run the following set of commands for a error-free install
21
+ `sudo chmod 777 ~/root`
22
+ `npm install -g @cloudflare/wrangler`
23
+ `sudo chmod 700 ~/root`
24
+ `sudo chmod -R 700 ~/root/.wrangler`
25
+
26
+ Check you have wrangler by using
27
+ `wrangler --help`
28
+
16
29
  #### 🌻 Starting fresh
17
30
 
31
+ If you use ssh for git, you will need to open `~/.gitconfig` and comment out the following lines while using `wrangler generate`
32
+ ```
33
+ [url "ssh://git@github.com/"]
34
+ insteadOf = https://github.com
35
+ ```
36
+ otherwise wrangler will fail to clone the project when using `wrangler generate`.
37
+
18
38
  After installing wrangler, you can pull the Netacea worker template by running the following:
19
39
 
20
40
  ```bash
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netacea/cloudflare",
3
- "version": "1.6.7",
3
+ "version": "1.6.8",
4
4
  "description": "Netacea Cloudflare CDN Integration",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -32,5 +32,5 @@
32
32
  "tsconfig-paths": "^3.9.0",
33
33
  "typescript": "^3.9.7"
34
34
  },
35
- "gitHead": "f4ea9c123965fd5829fcedaee7ad56260d5718fd"
35
+ "gitHead": "43973e3eb293a5fc3c5bd3adcd009488f764e2a3"
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netacea/cloudflare",
3
- "version": "1.6.7",
3
+ "version": "1.6.8",
4
4
  "description": "Netacea Cloudflare CDN Integration",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -32,5 +32,5 @@
32
32
  "tsconfig-paths": "^3.9.0",
33
33
  "typescript": "^3.9.7"
34
34
  },
35
- "gitHead": "f4ea9c123965fd5829fcedaee7ad56260d5718fd"
35
+ "gitHead": "43973e3eb293a5fc3c5bd3adcd009488f764e2a3"
36
36
  }