1
0
mirror of https://github.com/konvajs/konva.git synced 2025-04-05 20:48:28 +08:00

import fixes

This commit is contained in:
Anton Lavrenov 2021-05-09 07:22:41 -05:00
parent 8f8f467919
commit 5dbaeb8e2e
4 changed files with 1380 additions and 1417 deletions

2755
konva.js

File diff suppressed because it is too large Load Diff

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -17,8 +17,8 @@
"scripts": {
"start": "npm run test:watch",
"compile": "npm run clean && npm run tsc && cp ./src/index-types.d.ts ./lib/index-types.d.ts && npm run rollup",
"build": "npm run compile && cp ./src/index-types.d.ts ./lib && gulp build",
"test:node:import": "node ./test/import-test.js",
"build": "npm run compile && cp ./src/index-types.d.ts ./lib && gulp build && node ./rename-imports.js",
"test:import": "node ./test/import-test.js",
"test": "npm run test:browser && npm run test:node",
"test:build": "parcel build ./test/unit-tests.html --dist-dir test-build --target none --public-url ./ --no-source-maps",
"test:browser": "npm run test:build && mocha-headless-chrome -f ./test-build/unit-tests.html -a disable-web-security",
@ -66,6 +66,7 @@
"@types/mocha": "^8.2.2",
"canvas": "^2.7.0",
"chai": "4.3.4",
"filehound": "^1.17.4",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",

33
rename-imports.js Normal file
View File

@ -0,0 +1,33 @@
import FileHound from 'filehound';
import fs from 'fs';
const files = FileHound.create().paths('./lib').ext('js').find();
files.then((filePaths) => {
filePaths.forEach((filepath) => {
fs.readFile(filepath, 'utf8', (err, text) => {
if (!text.match(/import .* from/g)) {
return;
}
text = text.replace(/(import .* from\s+['"])(.*)(?=['"])/g, '$1$2.js');
if (text.match(/export .* from/g)) {
text = text.replace(/(export .* from\s+['"])(.*)(?=['"])/g, '$1$2.js');
}
if (err) throw err;
// stupid replacement back
text = text.replace(
"import * as canvas from 'canvas.js';",
"import * as canvas from 'canvas';"
);
console.log(`writing to ${filepath}`);
fs.writeFile(filepath, text, function (err) {
if (err) {
throw err;
}
});
});
});
});