-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(migration): of build scripts and workflows from python to javas…
…cript BREAKING CHANGE: Use `idnaUts46` as replacement for `ispapiIdnconverter` in browser or switch to the ESM variant.
- Loading branch information
1 parent
1c9c9ea
commit 205f1f2
Showing
36 changed files
with
7,083 additions
and
23,273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = { | ||
parserOptions: { | ||
ecmaVersion: 2017, | ||
sourceType: 'module', | ||
}, | ||
env: { | ||
es6: true, | ||
node: true, | ||
}, | ||
extends: 'eslint:recommended', | ||
overrides: [ | ||
{ | ||
files: 'test/*.js', | ||
env: { | ||
mocha: true, | ||
}, | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
dist/* | ||
# Web bundle should always be available on github raw | ||
!dist/index.bundle.js | ||
|
||
coverage | ||
node_modules | ||
test/IdnaTest.txt | ||
npm-debug.log* | ||
.nyc_output | ||
.vscode | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,3 @@ | ||
# Composer | ||
composer.phar | ||
composer.lock | ||
vendor | ||
|
||
# npm | ||
node_modules | ||
package-lock.json | ||
|
||
# Coverage Reporting | ||
report | ||
|
||
# Generated Archives | ||
pkg | ||
build | ||
|
||
# JS Build and Bundles | ||
**/*.all.css | ||
**/*.all.js | ||
**/*.min.css | ||
**/*.min.js | ||
coverage | ||
.nyc_output | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
module.exports = require('prettier-config-xo'); | ||
module.exports = module.exports = require('prettier-config-xo'); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
Original work Copyright (c) 2015 Joshua Cranmer <[email protected]> as part of jcranmer/idna-uts46. | ||
Modified work Copyright (c) 2017 Kai Schwarz <[email protected]> as part of this fork hexonet/idna-uts46. | ||
Copyright (c) 2022 Dawson Botsford as part of the fork dawsbot/idna-uts46 (Port to JS). | ||
Copyright (c) 2017-2023 Kai Schwarz as part of the fork hexonet/idna-uts46. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.