Skip to content

Commit 876f474

Browse files
committed
initial
0 parents  commit 876f474

File tree

6 files changed

+2889
-0
lines changed

6 files changed

+2889
-0
lines changed

.ateos/config.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"artifacts": {},
3+
"tasks": {
4+
"basePath": [
5+
"ateos_tasks"
6+
],
7+
"loadPolicy": "ignore",
8+
"default": false,
9+
"domains": {
10+
"public": "public",
11+
"private": "private"
12+
}
13+
}
14+
}

.ateos/dev.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"tasks": {},
3+
"defaultTask": "copy",
4+
"units": {
5+
"src": {
6+
"units": {
7+
"jssrc": {
8+
"description": "JavaScript codebase",
9+
"src": "src/**/*.js",
10+
"dst": "lib",
11+
"task": "transpile"
12+
},
13+
"tssrc": {
14+
"description": "TypeScript codebase",
15+
"src": [
16+
"src/**/*.ts",
17+
"!src/**/*.d.ts"
18+
],
19+
"dst": "lib",
20+
"task": "tsc"
21+
},
22+
"assets": {
23+
"description": "Assets",
24+
"task": "copy",
25+
"src": [
26+
"src/**/*",
27+
"!src/**/*.js",
28+
"!src/**/*.ts",
29+
"!src/**/*.d.ts"
30+
],
31+
"dst": "lib"
32+
}
33+
}
34+
}
35+
}
36+
}

.gitignore

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# IDEs and editors
4+
/.idea
5+
.project
6+
.classpath
7+
.c9/
8+
*.launch
9+
.settings/
10+
*.sublime-workspace
11+
12+
# IDE - VSCode
13+
.vscode/*
14+
#!.vscode/settings.json
15+
#!.vscode/tasks.json
16+
#!.vscode/launch.json
17+
#!.vscode/extensions.json
18+
19+
# misc
20+
/.sass-cache
21+
/connect.lock
22+
/coverage
23+
/libpeerconnection.log
24+
/typings
25+
*.old
26+
*.orig
27+
*.db
28+
29+
# e2e
30+
/e2e/*.js
31+
/e2e/*.map
32+
33+
# System Files
34+
.DS_Store
35+
Thumbs.db
36+
37+
# dependencies
38+
/node_modules
39+
40+
# packagers
41+
/.yarn
42+
/.pnp.cjs
43+
44+
# logs
45+
logs
46+
*.log
47+
npm-debug.log*
48+
yarn-debug.log*
49+
yarn-error.log*
50+
.pnpm-debug.log
51+
52+
# realm files/dirs
53+
/etc/
54+
/bin/
55+
/lib/
56+
/run/
57+
/var/
58+
/opt/
59+
/tmp/
60+
61+
# lock files
62+
package-lock.json
63+
yarn.lock
64+
pnpm-lock.yaml
65+
66+
test-fixtures/
67+
_fixtures/
68+
test-resources/
69+
70+
.env.*

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.ateos
2+
src

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "@recalibratedsystems/smartbuffer",
3+
"version": "1.0.2",
4+
"description": "Smart buffer",
5+
"main": "lib/index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/overphoenix/smartbuffer.git"
12+
},
13+
"author": "ATEOS team",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/overphoenix/smartbuffer/issues"
17+
},
18+
"homepage": "https://github.com/overphoenix/smartbuffer#readme",
19+
"dependencies": {
20+
"long": "^5.2.0",
21+
"utfx": "^1.0.1"
22+
}
23+
}

0 commit comments

Comments
 (0)