Skip to content

Commit a24babb

Browse files
committed
publish
1 parent 3129065 commit a24babb

File tree

5 files changed

+83
-0
lines changed

5 files changed

+83
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,6 @@ dist
134134
.yarn/build-state.yml
135135
.yarn/install-state.gz
136136
.pnp.*
137+
138+
dist/
139+
.DS_Store

package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "@acm-uiuc/js-shared",
3+
"version": "1.0.0",
4+
"description": "ACM UIUC Shared JS code",
5+
"main": "dist/index.js",
6+
"scripts": {
7+
"build": "tsc"
8+
},
9+
"files": [
10+
"dist"
11+
],
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/acm-uiuc/js-shared.git"
15+
},
16+
"author": "ACM @ UIUC",
17+
"license": "BSD-3-Clause",
18+
"bugs": {
19+
"url": "https://github.com/acm-uiuc/js-shared/issues"
20+
},
21+
"homepage": "https://github.com/acm-uiuc/js-shared#readme",
22+
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
23+
"devDependencies": {
24+
"typescript": "^5.8.3"
25+
}
26+
}

src/orgs.ts

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
export const SIGList = [
2+
"SIGPwny",
3+
"SIGCHI",
4+
"GameBuilders",
5+
"SIGAIDA",
6+
"SIGGRAPH",
7+
"ICPC",
8+
"SIGMobile",
9+
"SIGMusic",
10+
"GLUG",
11+
"SIGNLL",
12+
"SIGma",
13+
"SIGQuantum",
14+
"SIGecom",
15+
"SIGPLAN",
16+
"SIGPolicy",
17+
"SIGARCH",
18+
"SIGRobotics",
19+
"SIGtricity",
20+
] as [string, ...string[]];
21+
22+
export const CommitteeList = [
23+
"Infrastructure Committee",
24+
"Social Committee",
25+
"Mentorship Committee",
26+
"Academic Committee",
27+
"Corporate Committee",
28+
"Marketing Committee",
29+
] as [string, ...string[]];
30+
31+
export const OrganizationList = ["ACM", ...SIGList, ...CommitteeList] as [string, ...string[]];

tsconfig.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"target": "esnext",
4+
"module": "esnext",
5+
"declaration": true,
6+
"outDir": "./dist",
7+
"strict": true,
8+
"esModuleInterop": true,
9+
"skipLibCheck": true,
10+
"forceConsistentCasingInFileNames": true,
11+
"baseUrl": "./src"
12+
},
13+
"include": ["src/**/*.ts"],
14+
"exclude": ["node_modules", "dist"]
15+
}

yarn.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
typescript@^5.8.3:
6+
version "5.8.3"
7+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.3.tgz#92f8a3e5e3cf497356f4178c34cd65a7f5e8440e"
8+
integrity sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==

0 commit comments

Comments
 (0)