catco 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import path from '
|
|
2
|
+
import path from 'path';
|
|
3
3
|
import sade from 'sade';
|
|
4
4
|
import clipboard from 'clipboardy';
|
|
5
|
-
import fs from '
|
|
5
|
+
import fs from 'fs';
|
|
6
6
|
import { globby } from 'globby';
|
|
7
7
|
|
|
8
8
|
const minify = (content) => {
|
|
@@ -82,7 +82,7 @@ const parse = async (inputFile, outputDir) => {
|
|
|
82
82
|
console.log(`[catco parse] done. files written to ${outputDir}`);
|
|
83
83
|
};
|
|
84
84
|
|
|
85
|
-
var version = "2.0.
|
|
85
|
+
var version = "2.0.4";
|
|
86
86
|
var pkg = {
|
|
87
87
|
version: version};
|
|
88
88
|
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "catco",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Glob copy file contents to ya clipboard.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "pkgroll",
|
|
8
|
-
"
|
|
8
|
+
"pack": "pkgroll",
|
|
9
9
|
"start": "tsx src/index.ts ./src/**/*.ts"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|