Skip to content

Commit 648f8a8

Browse files
committed
chore: Update build
1 parent 92a342e commit 648f8a8

File tree

7 files changed

+9097
-14
lines changed

7 files changed

+9097
-14
lines changed

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2021 Feathers
3+
Copyright (c) 2024 Feathers
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

deno.lock

Lines changed: 83 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main/build.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as path from 'https://deno.land/std@0.115.1/path/mod.ts';
2-
import { build } from 'https://deno.land/x/dnt@0.17.0/mod.ts';
2+
import { build } from 'https://deno.land/x/dnt@0.40.0/mod.ts';
33
import hooksPackage from './hooks/package.json.ts';
44

55
const __dirname = new URL('.', import.meta.url).pathname;
@@ -15,12 +15,14 @@ const buildModule = async (name: string) => {
1515
test: false,
1616
shims: {},
1717
compilerOptions: {
18-
importHelpers: false,
18+
importHelpers: false
1919
},
20-
package: hooksPackage,
20+
package: hooksPackage
2121
});
2222

23-
filesToCopy.forEach((filename) => Deno.copyFileSync(path.join(inDir, filename), path.join(outDir, filename)));
23+
filesToCopy.forEach((filename) =>
24+
Deno.copyFileSync(path.join(inDir, filename), path.join(outDir, filename))
25+
);
2426
};
2527

2628
await buildModule('hooks');

main/hooks/LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2021 Feathers
3+
Copyright (c) 2024 Feathers
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ npm:
1515
rm -rf packages/
1616
deno run -A main/build.ts
1717
npx lerna bootstrap
18-
18+
1919
publish: npm
2020
npx lerna publish

0 commit comments

Comments
 (0)