File tree Expand file tree Collapse file tree 7 files changed +24
-14
lines changed
Expand file tree Collapse file tree 7 files changed +24
-14
lines changed Original file line number Diff line number Diff line change 22import PackageDescription
33
44let package = Package (
5- name: " LightTableDelta " ,
5+ name: " swift-delta " ,
66 products: [
77 . library(
8- name: " LightTableDelta " ,
9- targets: [ " LightTableDelta " ] ) ,
8+ name: " Delta " ,
9+ targets: [ " Delta " ] ) ,
1010 ] ,
1111 targets: [
1212 . target(
13- name: " LightTableDelta " ) ,
13+ name: " Delta " ) ,
1414 . testTarget(
15- name: " LightTableDeltaTests " ,
16- dependencies: [ " LightTableDelta " ] ) ,
15+ name: " DeltaTests " ,
16+ dependencies: [ " Delta " ] ) ,
1717 ]
1818)
Original file line number Diff line number Diff line change 1- # LightTableDelta
1+ # Swift Delta
22
3- A Swift package for a type ` Delta<Element> ` with three cases:
3+ Swift Delta is a package for a type ` Delta<Element> ` with three cases:
44
55- ` source(Element) `
66- ` target(Element) `
Original file line number Diff line number Diff line change 11//
2- // Delta.swift
3- // LightTableDelta
4- //
52// Copyright 2024 Florian Pircher
63//
74// Licensed under the Apache License, Version 2.0 (the "License");
Original file line number Diff line number Diff line change 11//
2- // DeltaSide.swift
3- // LightTableDelta
4- //
52// Copyright 2024 Florian Pircher
63//
74// Licensed under the Apache License, Version 2.0 (the "License");
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1+ //
2+ // Copyright 2024 Florian Pircher
3+ //
4+ // Licensed under the Apache License, Version 2.0 (the "License");
5+ // you may not use this file except in compliance with the License.
6+ // You may obtain a copy of the License at
7+ //
8+ // https://www.apache.org/licenses/LICENSE-2.0
9+ //
10+ // Unless required by applicable law or agreed to in writing, software
11+ // distributed under the License is distributed on an "AS IS" BASIS,
12+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ // See the License for the specific language governing permissions and
14+ // limitations under the License.
15+ //
16+
117import Testing
218import Foundation
319import LightTableDelta
You can’t perform that action at this time.
0 commit comments