From b7226a5ed2d70bb2109197fe69d37a51b9be60b3 Mon Sep 17 00:00:00 2001 From: lashlyn Date: Wed, 8 May 2024 19:04:38 +0700 Subject: [PATCH] update podspec --- .../contents.xcworkspacedata | 7 +++++++ EventSourceHttpBody.podspec | 14 ++++++++++++++ IKEventSource.podspec | 16 ---------------- sse-server/package-lock.json | 19 +++++++++++++++---- 4 files changed, 36 insertions(+), 20 deletions(-) create mode 100644 .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata create mode 100644 EventSourceHttpBody.podspec delete mode 100644 IKEventSource.podspec diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/EventSourceHttpBody.podspec b/EventSourceHttpBody.podspec new file mode 100644 index 0000000..acfb2f4 --- /dev/null +++ b/EventSourceHttpBody.podspec @@ -0,0 +1,14 @@ + +Pod::Spec.new do |s| + s.name = "EventSourceHttpBody" + s.version = "1.0.0" + s.summary = "Forked from https://github.com/inaka/EventSource with the added ability to include HttpBody" + s.homepage = "https://github.com/exyte/EventSource" + s.screenshots = "http://giant.gfycat.com/BossyDistantHadrosaurus.gif" + s.license = 'MIT' + s.author = { 'Exyte' => 'info@exyte.com' } + s.social_media_url = 'http://exyte.com' + s.ios.deployment_target = '10.0' + s.source = { :git => "https://github.com/exyte/EventSource.git" } + s.source_files = "EventSource/*.swift" +end diff --git a/IKEventSource.podspec b/IKEventSource.podspec deleted file mode 100644 index 3e927ea..0000000 --- a/IKEventSource.podspec +++ /dev/null @@ -1,16 +0,0 @@ - -Pod::Spec.new do |s| - s.name = "IKEventSource" - s.version = "3.0.1" - s.summary = "Server-sent events EventSource implementation in Swift." - s.homepage = "https://github.com/inaka/EventSource" - s.screenshots = "http://giant.gfycat.com/BossyDistantHadrosaurus.gif" - s.license = "Apache License Version 2.0" - s.author = { "Andres Canal" => "andresyo990@gmail.com" } - s.social_media_url = "http://twitter.com/inaka" - s.ios.deployment_target = '8.0' - s.tvos.deployment_target = '9.0' - s.osx.deployment_target = '10.10' - s.source = { :git => "https://github.com/inaka/EventSource.git" } - s.source_files = "EventSource/*.swift" -end diff --git a/sse-server/package-lock.json b/sse-server/package-lock.json index 4548b50..01cf8df 100644 --- a/sse-server/package-lock.json +++ b/sse-server/package-lock.json @@ -1,13 +1,24 @@ { "name": "SSE-Example", "version": "1.0.0", - "lockfileVersion": 1, + "lockfileVersion": 3, "requires": true, - "dependencies": { - "node-uuid": { + "packages": { + "": { + "name": "SSE-Example", + "version": "1.0.0", + "dependencies": { + "node-uuid": "1.4.2" + } + }, + "node_modules/node-uuid": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.2.tgz", - "integrity": "sha1-kH2z0Rt7aiz0+QX7cZnxSuc3m6A=" + "integrity": "sha1-kH2z0Rt7aiz0+QX7cZnxSuc3m6A=", + "deprecated": "Use uuid module instead", + "bin": { + "uuid": "bin/uuid" + } } } }